ORIENT/themes/modern2/partials/index/post_item.htm

26 lines
856 B
HTML

[viewBag]
==
<div class="card">
<div class="card__header">
<div class="card__header-category">
{% if post.categories.count>1 %}
{{post.categories.where('name','!=', category.name).first.name}}
{% else %}
{{post.categories.implode('name',',')}}
{% endif %}
</div>
<time class="card__header-date">{{post.published_at|date('d.m.Y')}}
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 4">
<path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" />
</svg>
{{post.published_at|date('H:i')}}
</time>
</div>
<div class="card__header">
</div>
<a href="{{'post'|page({id:post.id,slug:post.slug})}}" class="card__link">
{{post.title}}
</a>
</div>