aboutsummaryrefslogblamecommitdiffstats
path: root/martyalchin/templates/index.html
blob: 6286ef60206b232bd7c1e17783f2255379729325 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                                    
{% extends "base.html" %}
{% block content %}
        <h1><a href="{{ SITEURL }}">{{ SITENAME }}</a></h1>
        {% if SITESUBTITLE %} <div class="info">{{ SITESUBTITLE }}</div> {% endif %}
        {% for article in articles %}        
        <h2><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></h2> 
        <p class="published">{{ article.locale_date }}</p>
        {{ article.summary }}
        {% endfor %}
{% endblock %}