12345678910111213141516171819202122232425 |
- <!DOCTYPE html>
- <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
- <head>
- <meta charset="utf-8"/>
- <title>{{title}}{% block subtitle %}{% endblock %}</title>
- <link rel="canonical" href="{{site-url}}{{uri}}">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- {% style "css/screen.css" %}
- {% block head %}{% endblock %}
- </head>
- <body>
-
- {% block content %}
- {% endblock %}
- </body>
- </html>
-
|