| 123456789101112131415161718192021222324252627282930313233343536373839 |
- <div class="articles">
- <ol>
- {% for article in articles_page.object_list %}
- <li>
- <article>
- <footer>
- <p>
- {% if article.category %}
- {% if article.category != "misc" %}
- in <a href="{{ SITEURL }}/{{ article.category.url }}"><span class="category-tag">{{ article.category }}</span></a>
- {% endif %}
- {% endif %}
- </p>
- </footer>
- <header>
- <a href="{{ SITEURL }}/{{ article.url }}">
- <h2>{{ article.title }}</h2>
- </a>
- </header>
- <div class="summary">{{ article.description }} </div>
- <div class="tags">
- <ul class="tags">
- {% for tag in article.tags %}
- <li><a href="{{ SITEURL }}/{{ tag.url }}" class="tag">{{ tag.name }}</a></li>
- {% endfor %}
- </ul>
- </div>
- <a href="{{ SITEURL }}/{{ article.url }}">
- <p class="readmore">Read more...</p>
- </a>
- </article>
- </li>
- {% endfor %}
- </ol>
- {% if articles_page.has_other_pages() %}
- {% include 'pagination.html' %}
- {% endif %}
- </div>
|