default.html 639 B

12345678910111213141516171819202122232425262728
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. {% include head.html %}
  4. <body>
  5. <div class="container content">
  6. <header class="masthead">
  7. <h3 class="masthead-title">
  8. <a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
  9. <small>{{ site.tagline }}</small>
  10. </h3>
  11. </header>
  12. <main>
  13. {{ content }}
  14. </main>
  15. <footer class="footer">
  16. <small>
  17. &copy; <time datetime="{{ site.time | date_to_xmlschema }}">{{ site.time | date: '%Y' }}</time>. All rights reserved.
  18. </small>
  19. </footer>
  20. </div>
  21. </body>
  22. </html>