123456789101112131415161718 |
- <footer class="asset-header">
- <div class="byline">
- By {{ article.author }} on
- <abbr class="published" title="{{article.date.isoformat()}}">{{article.locale_date}}</abbr>
- </div>
- {% if article.tags %}
- |
- tags: {% for tag in article.tags %}
- <a href="/{{ tag.url }}">{{ tag }}</a>
- {% endfor %}
- {% endif %}
- {% import 'translations.html' as translations with context %}
- {{ translations.translations_for(article) }}
- </footer><!-- /.post-info -->
|