Files
fet2020/fet2020/templates/posts/partials/_posts_hero.html
2022-04-08 12:49:44 +00:00

23 lines
967 B
HTML

<article class="article-cover-image" style="background-image: url('{{ post.imageurl }}');" onclick="openArticle('{{ post.url }}')">
<div class="article-cover-desc">
<div class="article-cover-desc-items">
<ul class="article-cover-tags">
{% for t in post.three_tag_names %}
<li><a href="{% url 'posts:posts.tags' t %}">#{{ t }}</a></li>
{% endfor %}
</ul>
<div>
<a href="{{ post.url }}"><h3 class="text-gray-50">{{ post.title | safe }}</h3></a>
<div class="text-gray-200">
<i class="fas fa-clock"></i>
{% if post.post_type != 'N' %}
{{ post.event_start|date:"d. F Y" }}
{% else %}
{{ post.public_date|date:"d. F Y" }}
{% endif %}
</div>
</div>
</div>
</div>
</article>