Files
.com/theme/templates/index-content.html
Kenneth Reitz 2fe62c504e updated link
2012-09-11 04:01:56 -04:00

51 lines
1.5 KiB
HTML

<p>
My name is Kenneth Reitz.
</p>
<p>I'm a minimalist that loves APIs, web services, elegant design, and Python.</p>
<p>
I'm the product owner of Python at Heroku and a member of the Python Software Foundation. I spend a large portion of my time writing code and prose while traveling to <a href="http://kennethreitz.com/pages/talks.html">speak at </a> <a href="http://kennethreitz.com/pages/events.html">conferences</a>.
</p>
<p>
I'm most well known for my <a href="http://kennethreitz.com/pages/open-projects.html">open source software</a>, specifically <a href="http://python-requests.org">Requests</a>.
</p>
<p>
I'm also passionate about <a href="/pages/photography.html">digital photography</a> and <a href="http://tracks.refact0r.org/">music production</a>.
</p>
<h2>Featured Articles</h2>
{% set current_year = 0 %}
{% set in_list = False %}
{% for article in dates|reverse %}
{% if article.featured %}
{% if article.date.year != current_year %}
{% if in_list %}
</ul>
{% endif %}
<h3>{{ article.date.year }}</h3>
{% set current_year = article.date.year %}
{% set in_list = True %}
<ul>
{% endif %}
<li>
<a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title}}">{{ article.title }}</a>
</li>
{% endif %}
{% endfor %}
<h3>Backlog</h3>
Check out the <a href="/archives.html">article archive</a> for blog posts going back to 2008.