{% import 'time_macros.html' as time_macros %} {% macro get_meta(SITEURL, article, has_category=True) -%} Published on {{ time_macros.get_time(article, article.date) }} {% if article.modified %} and updated on {{ time_macros.get_time(article, article.locale_modified) }} {% endif %} {% if article.authors %} by {% for author in article.authors %} {{ author }} {% endfor %} {% endif %} {% if has_category %} posted in {{ article.category }} {% endif %}
{% for tag in article.tags %} {{ tag }} {% endfor %} {%- endmacro %}