post.njk 323 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. {% include 'head.html' %}
  5. </head>
  6. <body>
  7. {% include 'topbar.html' %}
  8. <article>
  9. <h1>{{ title | safe }}</h1>
  10. {{ content | safe }}
  11. </article>
  12. <footer class="page-footer">
  13. <small>- {{ site.author }}</small>
  14. </footer>
  15. </body>
  16. </html>