<!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 }}">
                                        &laquo; 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 &raquo;
                                </a>
                        </footer>
                </main>
        </div>
</div>

{% include footer.html %}

</body> </html>