Skip to content
Snippets Groups Projects
Select Git revision
  • ff3cda8402eaea5cb64707d1e382e9522efd06b0
  • master default protected
2 results

index.html

Blame
  • index.html 1.09 KiB
    {% extends "base.html" %}
    {% block content %}
        <main>
          {% if INDEX %}<section>{{ INDEX }}</section>{% endif %}
          <section id="home">
                <ul>
                    {% for article in articles_page.object_list %}
                    <li>
    		  {% if article.date >= now() %}
    		  <h1><time datetime="{{ article.date }}">{{ article.date|strftime('%b %d, %Y') }}</time></h1>
                            <h2><a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark"
                                   title="Permalink to {{ article.title|striptags }}">{{ article.title }}
          {% if article.author %}
          <h3>{{ article.author }}</h3>
          {% endif %}
                            <p>
                                {{ article.summary }}
                                <a href="{{ SITEURL }}/{{ article.url }}"><em>Read more...</em></a>
                            </p>
                    </li>
    		  {% endif %}
                    {% endfor %}
                </ul>
                {% if articles_page.has_other_pages() %}
                    {% include 'pagination.html' %}
                {% endif %}
            </section>
        </main>
    {% endblock content %}