layout.html 1.2 KB

1234567891011121314151617181920212223242526
  1. <!DOCTYPE HTML>
  2. <html lang="{{ config.language }}" {% if page.dir == "rtl" %}dir="rtl"{% endif %}>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>{% block title %}{{ config.title|d("HonKit", true) }}{% endblock %}</title>
  6. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  7. <meta name="description" content="{% block description %}{% endblock %}">
  8. <meta name="generator" content="HonKit {{ gitbook.version }}">
  9. {% if config.author %}<meta name="author" content="{{ config.author }}">{% endif %}
  10. {% if config.isbn %}<meta name="identifier" content="{{ config.isbn }}" scheme="ISBN">{% endif %}
  11. {% block style %}
  12. {% for resource in plugins.resources.css %}
  13. {% if resource.url %}
  14. <link rel="stylesheet" href="{{ resource.url }}">
  15. {% else %}
  16. <link rel="stylesheet" href="{{ resource.path|resolveAsset }}">
  17. {% endif %}
  18. {% endfor %}
  19. {% endblock %}
  20. {% block head %}{% endblock %}
  21. </head>
  22. <body>
  23. {% block body %}{% endblock %}
  24. {% block javascript %}{% endblock %}
  25. </body>
  26. </html>