main_layout.njk 274 B

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