123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- {% extends "base.html" %}
- {% block content %}
- {{ super() }}
- <ul>
- {% for article in articles_page.object_list %}
- <li>
- <div>
- <div>
- <h2>
- <a href="{{ SiteProtoDomainTLD }}/{{ article.url }}" rel="bookmark" title="Permalink to {{ article.title|striptags }}">
- {{ article.title }}
- </a>
- </h2>
- <div>
- <span>Post in</span>
- <abbr title="{{ article.date.isoformat() }}">
- <a href="{{ SiteProtoDomainTLD }}/archive/{{ article.date|strftime('%Y%m%d') }}/{{article.slug}}/">
- {{ article.locale_date }}
- </a>
- </abbr>
- <span> | By</span>
- {% if article.author %}
- <a href="{{ SiteProtoDomainTLD }}/author/{{ article.author|lower() }}/index.html">{{ article.author }}</a>
- {% elif AUTHOR %}
- <a href="{{ SiteProtoDomainTLD }}/author/{{ AUTHOR }}.html">{{ AUTHOR }}</a>
- {% endif %}
- <span> | Tags</span>
- {% for tag in article.tags %}
- <a href="{{ SiteProtoDomainTLD }}/{{ tag.url }}">{{ tag }}</a>
- {% endfor %}
- </div>
- </div>
- <div>{{ article.summary }}</div>
- <div>
- <span>Category:</span>
- <abbr>
- <a href="{{ SiteProtoDomainTLD }}/{{ article.category.url }}">{{ article.category }}</a>
- </abbr>
- </div>
- <hr />
- </div>
- </li>
- {% endfor %}
- </ul>
- {% include 'pagination.html' %}
- {% endblock content%}
|