| 1234567891011121314151617 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- {% include 'head.html' %}
- </head>
- <body>
- {% include 'topbar.html' %}
- <article>
- {{ content | safe }}
- </article>
- <footer class="page-footer">
- <small>- {{ site.author }}</small>
- </footer>
- </body>
- </html>
|