mirror of
https://github.com/kennethreitz-archive/.com.git
synced 2026-06-20 15:20:57 +00:00
23 lines
411 B
HTML
23 lines
411 B
HTML
{% extends "base.html" %}
|
|
{% block title %}{{ SITE_TITLE }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<hr class="implied">
|
|
<article class="G4 GR GS" id="content">
|
|
<header>
|
|
<h1>Hi, There.</h1>
|
|
</header>
|
|
|
|
<div class="formatted">
|
|
{% include 'index-content.html' %}
|
|
</div>
|
|
|
|
<hr>
|
|
<p>Follow me on GitHub as <a href="http://github.com/kennethreitz">kennethreitz</a>.</p>
|
|
|
|
|
|
</article>
|
|
|
|
{% endblock %}
|