<!DOCTYPE html> <html xmlns=βwww.w3.org/1999/xhtmlβ lang=βenβ> {% include head.html %} <body>
{% include header.html %} <div id="wrapper"> {% include menu.html %} <div id="content"> {% include sidebar.html %} <main> <h1>{{ page.title }}</h1> <article> {{ content }} </article> <footer> <a href="{{ page.previous | absolute_url }}"> « Previous </a> <span id="metadata"> | Posted {{ page.date | date: "%B %-d, %Y" }} by {{ page.author | default: site.author }} | </span> <a href="{{ page.next | absolute_url }}"> Next » </a> </footer> </main> </div> </div> {% include footer.html %}
</body> </html>