{% if post.mentions %} RE: {{ post.mentions.url }} {% else %} {{ post.headline }} {% endif %}
{{ post.license | extractlicense }}
by
at
{{ post.url }}
{% if post.keywords|length > 0 %}
{% for keyword in post.keywords %}
#{{ keyword }}{% if not loop.last %} {% endif %}
{% endfor %}
{% endif %}
{% if post['@type'] == 'Photograph' %}
{% if post.image[0].locationCreated %}
Location:
{{ post.image[0].locationCreated.geo.longitude }},
{{ post.image[0].locationCreated.geo.latitude }}
{% endif %}
{% endif %}
{% if post.sameAs|length %}
Syndicated to:
{% for url in post.sameAs %}
{{ url }}{% if not loop.last and post.sameAs|length >1 %}, {% endif %}
{% endfor %}
{% endif %}
Responses
{% for comment in post.comment %}-
{% if 'like-of' == comment.disambiguatingDescription %}
{% set icon = 'star' %}
{% elif 'bookmark-of' == comment.disambiguatingDescription %}
{% set icon = 'bookmark' %}
{% elif 'reply' == comment.disambiguatingDescription %}
{% set icon = 'reply' %}
{% else %}
{% set icon = 'link' %}
{% endif %}
from
{% if comment.author.url %}
{{ comment.author.name }}
{% else %}
{{ comment.author.name }}
{% endif %}
at
{% endfor %}
{{ comment.url }}