mirror of
https://github.com/WatchOutNewsAgency/wona.github.com.git
synced 2026-01-01 01:16:26 +00:00
18 lines
873 B
HTML
18 lines
873 B
HTML
{% assign post = include.post %}
|
|
<div class="row article article-horizontal">
|
|
<div class="col-md-4 center-fill-container img-container">
|
|
<img src="/images/posts/{{post.image}}" alt="" class="img-center-fill center-both {% if post.image == null %}hidden{% endif %}">
|
|
</div>
|
|
<div class="details-container col-md-8">
|
|
<div class="details">
|
|
<div class="head">
|
|
<h3 class="title"><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
<div class="tag"><a href="/category/{{ post.category }}/">{{ site.data.categories_name[post.category] }}</a></div>
|
|
<span class="date">{{ post.date | date: "%b %e, %Y" | upcase }}</span>
|
|
</div>
|
|
<div class="excerpt">{% if post.excerpt != null %}{{ post.excerpt | markdownify | truncate: 250 }}{% endif %}</div>
|
|
</div> <!--details-->
|
|
</div> <!--details-container-->
|
|
</div> <!--article-->
|
|
|