article_stub.html 1.3 KB

123456789101112131415161718192021222324252627282930313233
  1. {% if not articles_page or first_article_of_day %}
  2. <h4 class="date">{{ article.locale_date }}</h4>
  3. {% endif %}
  4. <article class="post">
  5. {% if article.title %}
  6. <h2 class="title">
  7. <a href="{{ SITEURL }}/{{ article.url }}" rel="bookmark" title="Permanent Link to &quot;{{ article.title }}&quot;">{{ article.title }}</a>
  8. </h2>
  9. {% endif %}
  10. {% if not articles_page %}
  11. {% include "translations.html" %}
  12. {% endif %}
  13. {{ article.content }}
  14. <div class="clear"></div>
  15. <div class="info">
  16. <a href="{{ SITEURL }}/{{ article.url }}">posted at {{ article.date.strftime("%H:%M") }}</a>
  17. {% if article.category.name != "misc" %}
  18. &nbsp;&middot;&nbsp;<a href="{{ SITEURL }}/{{ article.category.url }}" rel="tag">{{ article.category }}</a>
  19. {% endif %}
  20. {% if article.tags %}
  21. &nbsp;&middot;
  22. {% for t in article.tags %}
  23. &nbsp;<a href="{{ SITEURL }}/{{ t.url }}" class="tags{% if tag and tag.name == t.name %} selected{% endif %}">{{ t }}</a>
  24. {% endfor %}
  25. {% endif %}
  26. </div>
  27. </article>