diff options
Diffstat (limited to 'theme/templates/ebook/layout.html')
-rw-r--r-- | theme/templates/ebook/layout.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/theme/templates/ebook/layout.html b/theme/templates/ebook/layout.html index 1ff85bf..c2501b6 100644 --- a/theme/templates/ebook/layout.html +++ b/theme/templates/ebook/layout.html @@ -1,8 +1,8 @@ <!DOCTYPE HTML> <html lang="{{ language }}" {% block htmlTag %}{% endblock %} {% if options.direction == "rtl" %}dir="rtl"{% endif %}> - {{ htmlSnippet("html:start")|default("")|safe }} + {{ htmlSnippet("html:start")|default("", true)|safe }} <head> - {{ htmlSnippet("head:start")|default("")|safe }} + {{ htmlSnippet("head:start")|default("", true)|safe }} <meta charset="UTF-8"> <title>{% block title %}{% endblock %}</title> <meta content="text/html; charset=utf-8" http-equiv="Content-Type"> @@ -11,14 +11,14 @@ {% if options.author %}<meta name="author" content="{{ options.author }}">{% endif %} {% if options.isbn %}<meta name="identifier" content="{{ options.isbn }}" scheme="ISBN">{% endif %} {% block head %}{% endblock %} - {{ htmlSnippet("head:end")|default("")|safe }} + {{ htmlSnippet("head:end")|default("", true)|safe }} </head> <body> - {{ htmlSnippet("body:start")|default("")|safe }} + {{ htmlSnippet("body:start")|default("", true)|safe }} {% block style %}{% endblock %} {% block content %}{% endblock %} {% block javascript %}{% endblock %} - {{ htmlSnippet("body:end")|default("")|safe }} + {{ htmlSnippet("body:end")|default("", true)|safe }} </body> - {{ htmlSnippet("html:end")|default("")|safe }} + {{ htmlSnippet("html:end")|default("", true)|safe }} </html> |