{% if post.mentions %} RE: {{ post.mentions.url }} {% else %} {{ post.headline }} {% endif %}
Encourage creation!
If this entry helped you, or you simply liked it, leave a tip via
{% set counters = {'donation': False} %}
{% for donate in post.potentialAction %}
{% if 'DonateAction' == donate['@type'] %}
{% if counters.donation %} or {% endif %}
{{ donate.description }}
{% if counters.update({'donation': True}) %} {% endif %}
{% endif %}
{% endfor %}
Responses
{% for comment in post.comment %}-
{{ comment.disambiguatingDescription }}
from
{% if comment.author.url %}
{{ comment.author.name }}
{% else %}
{{ comment.author.name }}
{% endif %}
at
{% endfor %}
{{ comment.url }}