layout.html 1.0 KB

12345678910111213141516171819202122232425262728
  1. {% extends "layout.html" %}
  2. {% block head %}
  3. {{ super() }}
  4. <meta name="HandheldFriendly" content="true"/>
  5. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <link rel="apple-touch-icon-precomposed" sizes="152x152" href="{{ "images/apple-touch-icon-precomposed-152.png"|resolveAsset }}">
  9. <link rel="shortcut icon" href="{{ "images/favicon.ico"|resolveAsset }}" type="image/x-icon">
  10. {% endblock %}
  11. {% block style %}
  12. {### Include theme css before plugins css ###}
  13. <link rel="stylesheet" href="{{ "style.css"|resolveAsset }}">
  14. {{ super() }}
  15. {### Custom stylesheets for the book ###}
  16. {% for type, style in config.styles %}
  17. {% if fileExists(style) and type == "website" %}
  18. <link rel="stylesheet" href="{{ style|resolveFile }}">
  19. {% endif %}
  20. {% endfor %}
  21. {% endblock %}
  22. {% block body %}{% endblock %}