blog.notmyidea.org/theme/templates/index.html
2012-03-30 02:00:04 +02:00

15 lines
564 B
HTML

{% extends "base.html" %}
{% block content %}
<p>Hey, I'm Alexis and this is my blog. I try to talk about freedom, free
software and activistm. I'm currently spending my days in Paris, doing
python for the mozilla services team.</p>
{% for article in articles %}
<h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2>
<p class="date">{{ article.locale_date }}</p>
{% if article.description %}
<p class="description">{{ article.description }}</p>
{% endif %}
{% endfor %}
{% endblock %}