<!DOCTYPE html> <html lang=“{{site.language}}”>

{% include header.html %}

<body>

<div id="main">
    {% include navigation.html %}
    <div id="content-left">
        <div id="post">
            <h2>{{ page.title }}</h2>
            <i>posted on {{ page.date | date: "%-d %b %Y" }} by Ahmad Shuami</i>
            {{ content }}
            {% if page.categories.size > 0 %}
                <div id="categories">
                    <p id="post-cat"><b>Categories:</b>&nbsp;
                        {% for category in page.categories %}
                        <a href="{{site.url}}{{site.baseurl}}/categories/{{category}}/">{{category}}</a>&nbsp;
                        {% endfor %}
                    </p>
                </div>
            {% endif %}
            {% if site.disqus_username and page.comments or site.comments %}
                <div id="disqus_thread"></div>
                {% include discussion.html %}
            {% endif %}
        </div>
    </div>

    {% include footer.html %}

</div>

</body>

</html>