default.html 538 B

1234567891011121314151617181920212223242526
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">
  3. {% include head.html %}
  4. <body>
  5. <div class="container content">
  6. <div class="masthead">
  7. <h3 class="masthead-title">
  8. <a href="/" title="Home">{{ site.title }}</a>
  9. <small>{{ site.tagline }}</small>
  10. </h3>
  11. </div>
  12. {{ content }}
  13. <div class="footer">
  14. <p>
  15. &copy; {{ site.time | date: '%Y' }}. All rights reserved.
  16. </p>
  17. </div>
  18. </div>
  19. </body>
  20. </html>