mirror of
https://github.com/kennethreitz-archive/.com.git
synced 2026-06-20 15:20:57 +00:00
32 lines
500 B
HTML
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 %}
|