{% load i18n humanize %}

Meta

{% trans 'Published' %}: {{ article.publish_date|naturalday }}

{% trans 'Author' %}: {{ article.author.get_name }}

{% trans 'Comments' %}:  

{% trans 'Word Count' %}: {{ article.word_count|intcomma }}

{% if article.get_next_article %}

{% trans 'Next' %}: {{ article.get_next_article.title }}

{% endif %} {% if article.get_previous_article %}

{% trans 'Previous' %}: {{ article.get_previous_article.title }}

{% endif %} {% if article.use_addthis_button and article.addthis_username %}
Bookmark and Share
{% endif %}

{% trans 'Tags' %}

{% if article.tags.count %}{% for tag in article.tags.all %}{{ tag.name }} {% endfor %}{% else %}None{% endif %}

{% for fu in article.followups.live %} {% if forloop.first %}

{% trans 'Follow-Up Articles' %}

{% endif %} {% endfor %} {% for fu in article.followup_for.live %} {% if forloop.first %}

{% trans 'Follows Up On' %}

{% endif %} {% endfor %} {% for ra in article.related_articles.live %} {% if forloop.first %} {% endif %} {% endfor %} {% for url,title in article.links %} {% if forloop.first %}

{% trans 'Article Links' %}

    {% endif %}
  1. {{ title|safe|truncatewords:10 }}
  2. {% if forloop.last %}
{% endif %} {% endfor %}