{% if post.mentions %} RE: {% else %} {{ post.headline }} {% endif %}
{% if post.review %} {% endif %} {% if post.description|length %}
{{ post.description|relurl(baseurl) }}
{% endif %}
{% if post.image|length %}
{% for image in post.image %}
{% if image.representativeOfPage %}
{{ image.text|relurl(baseurl) }}
{% endif %}
{% endfor %}
{% endif %}
{% if 'WebPage' != post['@type'] %}
{% if post.comment|length %}
{{ post.text|relurl(baseurl) }}
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 }}