2020-05-17 18:14:43 +01:00
|
|
|
<div class="h-entry hentry" lang="{{ post.inLanguage }}">
|
|
|
|
<div class="entry-header">
|
2019-02-07 19:27:15 +00:00
|
|
|
<h3 class="p-name entry-title">
|
|
|
|
{% if post.mentions %}
|
|
|
|
<span>
|
|
|
|
<svg width="16" height="16">
|
|
|
|
<use xlink:href="#icon-reply" />
|
|
|
|
</svg>
|
2019-02-16 00:14:12 +00:00
|
|
|
<a href="{{ post.url|relurl(baseurl) }}">
|
2019-02-07 19:27:15 +00:00
|
|
|
RE:
|
|
|
|
</a>
|
|
|
|
<a href="{{ post.mentions.url }}" class="u-in-reply-to">
|
|
|
|
{{ post.mentions.url }}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
{% else %}
|
2019-02-16 00:14:12 +00:00
|
|
|
<a href="{{ post.url|relurl(baseurl) }}">
|
2019-02-07 19:27:15 +00:00
|
|
|
{{ post.headline }}
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
</h3>
|
2019-02-08 23:32:52 +00:00
|
|
|
<a href="{{ post.url }}" class="u-url bookmark"></a>
|
2020-05-17 18:14:43 +01:00
|
|
|
</div>
|
2019-02-07 19:27:15 +00:00
|
|
|
|
|
|
|
{% if post.description|length %}
|
2019-12-13 14:11:05 +00:00
|
|
|
{% set summary = post.description %}
|
2019-02-07 19:27:15 +00:00
|
|
|
{% else %}
|
2019-12-13 14:11:05 +00:00
|
|
|
{% set summary = post.text|truncate(255) %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if post['@type'] == 'Photograph' %}
|
2019-10-25 09:43:50 +01:00
|
|
|
{% if post.image|length %}
|
|
|
|
{% for image in post.image %}
|
|
|
|
{% if image.representativeOfPage %}
|
|
|
|
{{ image.text|relurl(baseurl) }}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
2019-02-07 19:27:15 +00:00
|
|
|
{% endif %}
|
2019-12-13 14:11:05 +00:00
|
|
|
<div class="e-summary entry-summary">
|
|
|
|
{{ summary|relurl(baseurl) }}
|
|
|
|
<span class="more">
|
|
|
|
<a href="{{ post.url|relurl(baseurl) }}">
|
|
|
|
{% if post.inLanguage == 'hu' %}Tovább »{% else %}Continue »{% endif %}
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-02-07 19:27:15 +00:00
|
|
|
|
2020-05-17 18:14:43 +01:00
|
|
|
<div class="entry-footer" aria-hidden="true" hidden="hidden">
|
2019-02-08 23:32:52 +00:00
|
|
|
Published at
|
|
|
|
<time datetime="{{ post.datePublished }}" class="dt-published published">{{ post.datePublished|printdate }}</time>
|
|
|
|
<time datetime="{{ post.dateModified }}" class="dt-updated updated"></time>
|
|
|
|
by
|
2019-02-07 19:27:15 +00:00
|
|
|
<span class="p-author h-card vcard">
|
2019-02-16 00:14:12 +00:00
|
|
|
<img class="u-photo photo" src="{{ post.author.image|relurl(baseurl) }}" alt="" />
|
|
|
|
<a class="p-name u-url fn url org" href="{{ post.author.url }}">{{ post.author.name }}</a>
|
2019-02-08 23:32:52 +00:00
|
|
|
<a class="u-email email" href="mailto:{{ post.author.email }}">{{ post.author.email }}</a>
|
2019-02-07 19:27:15 +00:00
|
|
|
</span>
|
2020-05-17 18:14:43 +01:00
|
|
|
</div>
|
|
|
|
</div>
|