2008-06-26 14:36:58 +00:00
|
|
|
{% extends "base_home.html" %}
|
|
|
|
|
2008-06-27 02:41:04 +00:00
|
|
|
{% block main-content %}
|
|
|
|
{% load markup %}
|
|
|
|
{% load article_tags %}
|
2008-06-26 14:36:58 +00:00
|
|
|
|
2008-06-27 02:41:04 +00:00
|
|
|
{% load_main_articles "2" as "articles" %}
|
|
|
|
{% if not articles %}
|
|
|
|
{% load_last_articles "2" as "articles" %}
|
|
|
|
{% endif %}
|
2008-06-26 14:36:58 +00:00
|
|
|
|
2008-06-27 02:41:04 +00:00
|
|
|
{% for article in articles %}
|
|
|
|
<h2>{{ article.title }}</h2>
|
2008-06-26 14:36:58 +00:00
|
|
|
|
2008-06-27 02:41:04 +00:00
|
|
|
{{ article.text|restructuredtext }}
|
|
|
|
{% endfor %}
|
2008-06-26 14:36:58 +00:00
|
|
|
{% endblock %}
|