14 lines
737 B
HTML
14 lines
737 B
HTML
<article class="bg-white dark:bg-gray-800 rounded shadow transition-all duration-300 hover:shadow-md transform hover:scale-105">
|
|
<a href="{{ post.url }}" class="block p-4">
|
|
<div class="float-right px-2 py-0.5 rounded-full text-sm font-medium text-proprietary dark:text-blue-100 bg-blue-200 dark:bg-proprietary-dark">
|
|
<i class="fa-solid fa-calendar-days mr-1"></i>
|
|
{% if post.post_type != 'N' %}
|
|
{{ post.event_start|date:"d.m.Y" }}
|
|
{% else %}
|
|
{{ post.public_date|date:"d.m.Y" }}
|
|
{% endif %}
|
|
</div>
|
|
<h3 class="text-gray-800 dark:text-gray-200 leading-relaxed">{{ post.title | safe | truncatechars:60 }}</h3>
|
|
</a>
|
|
</article>
|