{% if article.tasknote %}
➕
{% else %}
Published
{% endif %}
{# Uncomment if you want the author shown #}
{#{% if article.author %}#}
{#By#}
{# {{ article.author }}#}
{#{% endif -%}-#}
{# TaskNote Metadata #}
{%- if article.tasknote -%}
{% if article.threshold_date %}
{# TODO: cast as datetime.datetime #}
• 🛫
{% endif %}
{% if article.scheduled %}
• 📅
{% endif %}
{% if article.due %}
{# TODO: cast as datetime.datetime #}
• ⏳
{% endif %}
{% if article.completed %}
{# TODO: cast as datetime.datetime #}
{% if article.task_status == "cancalled" %}
• ❌
{% else %}
• ✅
{% endif %}
{% endif %}
{%- endif -%}
{%- if article.micro -%}
{%- else -%}
{%- if article.readtime_minutes -%}
Reading Time ~{{ article.readtime_minutes }} min
{%- elif article.stats -%}
Reading Time ~{{ article.stats['read_mins'] }} min
{%- endif -%}
{%- endif -%}
{#- Uncomment if you want to show Categories#}
{#Category#}
{#{{ article.category }}-#}
{%- if PDF_PROCESSOR %}
PDF
{% endif -%}
{%- include 'includes/taglist.html' %}
{% import 'includes/translations.html' as translations with context %}
{{ translations.translations_for(article) }}
{% if DISPLAY_SOURCE_PATH %}
Source File {{ article.source_path | replace(PATH, "") }}
{% endif %}