ORIENT/themes/modern2/partials/post_list_item.htm

50 lines
2.4 KiB
HTML

<div class="heading__row">
<a href="{{post.featured_image|media}}" class="heading__image primary progressive replace">
<!-- <picture>-->
<!-- <source media="min-width:650px" srcset="{{post.featured_image|media_cdn}}">-->
<!-- <img class="preview" src="{{post.featured_image|media_cdn}}" alt="">-->
<!-- </picture>-->
<img class="preview" src="{{'assets/images/news/1.jpg'|theme}}" alt="">
</a>
<div class="heading__content">
<div class="heading__content-header">
<div class="heading__content-header-date">
<span>
{{post.published_at|date('d.m.Y')}}
</span>
<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4">
<path data-name="Polygon 1" d="M2,0,4,2,2,4,0,2Z"
fill="#a2a2a2" />
</svg>
<span>
{{post.published_at|date('H:i')}}
</span>
</div>
<div class="heading__content-header-view">
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 21 15">
<g id="eye" transform="translate(-0.5 -3.5)">
<path id="Path_6489" data-name="Path 6489"
d="M1,11S4.636,4,11,4s10,7,10,7-3.636,7-10,7S1,11,1,11Z"
fill="none" stroke="" stroke-linecap="round"
stroke-linejoin="round" stroke-width="1" />
<ellipse id="Ellipse_12" data-name="Ellipse 12" cx="4.859"
cy="4.791" rx="4.859" ry="4.791"
transform="translate(6.141 6.209)" fill="none" stroke=""
stroke-linecap="round" stroke-linejoin="round"
stroke-width="1" />
</g>
</svg>
<span>{{post.views}}</span>
</div>
</div>
<div class="heading__content-body">
<a href="{{postPage|page({id:post.id,slug:post.slug})}}" >
<h2 class="heading__content-body-link">{{post.title}}</h2>
</a>
<div class="heading__content-body-para">
{{post.summary|raw}}
</div>
</div>
</div>
</div>