diff options
| author | Yoshiki Shibukawa <shibukawa.yoshiki@dena.jp> | 2016-07-21 10:09:01 +0900 |
|---|---|---|
| committer | Yoshiki Shibukawa <shibukawa.yoshiki@dena.jp> | 2016-08-09 16:58:56 +0900 |
| commit | 90b3c79895347005a8ec43256f031d444064f431 (patch) | |
| tree | 797311d67a71274bead7730f5363007f3dd5f12e /sphinx/themes/basic/layout.html | |
| parent | 8f162a132e86ce60c20b0b7a98d04d959511e1cf (diff) | |
| download | sphinx-git-90b3c79895347005a8ec43256f031d444064f431.tar.gz | |
fix html entity to fix epub error
Diffstat (limited to 'sphinx/themes/basic/layout.html')
| -rw-r--r-- | sphinx/themes/basic/layout.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sphinx/themes/basic/layout.html b/sphinx/themes/basic/layout.html index 1afc4a0bf..cf41aff4b 100644 --- a/sphinx/themes/basic/layout.html +++ b/sphinx/themes/basic/layout.html @@ -11,7 +11,7 @@ <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> {%- endblock %} -{%- set reldelim1 = reldelim1 is not defined and ' »' or reldelim1 %} +{%- set reldelim1 = reldelim1 is not defined and ' »' or reldelim1 %} {%- set reldelim2 = reldelim2 is not defined and ' |' or reldelim2 %} {%- set render_sidebar = (not embedded) and (not theme_nosidebar|tobool) and (sidebars != []) %} @@ -19,7 +19,7 @@ {# XXX necessary? #} {%- if url_root == '#' %}{% set url_root = '' %}{% endif %} {%- if not embedded and docstitle %} - {%- set titlesuffix = " — "|safe + docstitle|e %} + {%- set titlesuffix = " — "|safe + docstitle|e %} {%- else %} {%- set titlesuffix = "" %} {%- endif %} @@ -186,9 +186,9 @@ <div class="footer" role="contentinfo"> {%- if show_copyright %} {%- if hasdoc('copyright') %} - {% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %} + {% trans path=pathto('copyright'), copyright=copyright|e %}© <a href="{{ path }}">Copyright</a> {{ copyright }}.{% endtrans %} {%- else %} - {% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} + {% trans copyright=copyright|e %}© Copyright {{ copyright }}.{% endtrans %} {%- endif %} {%- endif %} {%- if last_updated %} |
