metadata.html 760 B

1234567891011121314151617181920
  1. {{ article.locale_date }}
  2. {% if article.author %}
  3. by <a class="url fn" href="{{ SITEURL }}/{{ article.author.url }}">{{ article.author }}</a>
  4. {% if article.translations %}
  5. <a href="{{ SITEURL }}/{{ article.url }}" class="btn btn-info xsmall">{{ article.lang or DEFAULT_LANG }}</a>
  6. {% for translation in article.translations %}
  7. <a href="{{ SITEURL }}/{{ translation.url }}" class="btn btn-info xsmall">{{ translation.lang }}</a>&nbsp;
  8. {% endfor %}
  9. {% endif %}
  10. {% endif %}
  11. {# Filed under <a href="{{ SITEURL }}/{{ article.category.url }}">{{ article.category }}</a> #}
  12. {#
  13. {% if article.tags %}
  14. Tags {% for tag in article.tags %}<a href="{{ SITEURL }}/{{ tag.url }}">{{ tag }}</a> {% endfor %}
  15. {% endif %}
  16. #}