base.html 486 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
  3. <head>
  4. <meta charset="utf-8"/>
  5. <title>{{title}}{% block subtitle %}{% endblock %}</title>
  6. <link rel="canonical" href="{{site-url}}{{uri}}">
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. {% style "css/screen.css" %}
  9. {% block head %}{% endblock %}
  10. </head>
  11. <body>
  12. {% block content %}
  13. {% endblock %}
  14. </body>
  15. </html>