12345678910111213141516171819202122232425262728 |
- <!DOCTYPE html>
- <html lang="en">
- {% include head.html %}
- <body>
- <div class="container content">
- <header class="masthead">
- <h3 class="masthead-title">
- <a href="{{ site.baseurl }}/" title="Home">{{ site.title }}</a>
- <small>{{ site.tagline }}</small>
- </h3>
- </header>
- <main>
- {{ content }}
- </main>
- <footer class="footer">
- <small>
- © <time datetime="{{ site.time | date_to_xmlschema }}">{{ site.time | date: '%Y' }}</time>. All rights reserved.
- </small>
- </footer>
- </div>
- </body>
- </html>
|