Files
Kenneth Reitz b9df72801d aside support!
2012-11-22 03:09:44 -05:00

32 lines
500 B
HTML

{% extends "base.html" %}
{% block title %}{{ page.title }}{% endblock %}
{% block content %}
<hr class="implied">
<article class="G4 GR GS" id="content">
<header>
<h1>{{ page.title }} </h1>
</header>
<div class="formatted">
{% if page.aside %}
<aside>
{{ page.aside }}
</aside>
{% endif %}
{{ page.content }}
</div>
<hr>
<p>Follow me on GitHub as <a href="http://github.com/kennethreitz">kennethreitz</a>.</p>
</article>
{% endblock %}