summaryrefslogtreecommitdiffstats
path: root/theme/templates/ebook/layout.html
blob: 3ca3ef4a08e975161a20760f90814695079b5ad1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE HTML>
<html lang="{{ language }}" {% block htmlTag %}{% endblock %} {% if options.direction == "rtl" %}dir="rtl"{% endif %}>
    {{ htmlSnippet("html:start")|default("")|safe }}
    <head>
        {{ htmlSnippet("head:start")|default("")|safe }}
        <meta charset="UTF-8">
        <title>{% block title %}{% endblock %}</title>
        <meta content="text/html; charset=utf-8" http-equiv="Content-Type">
        <meta name="description" content="{% block description %}{% endblock %}">
        <meta name="generator" content="GitBook {{ gitbook.version }}">
        {% block head %}{% endblock %}
        {{ htmlSnippet("head:end")|default("")|safe }}
    </head>
    <body>
        {{ htmlSnippet("body:start")|default("")|safe }}
        {% block style %}{% endblock %}
        {% block content %}{% endblock %}
        {% block javascript %}{% endblock %}
        {{ htmlSnippet("body:end")|default("")|safe }}
    </body>
    {{ htmlSnippet("html:end")|default("")|safe }}
</html>