paulwalko.github.io/_includes/post_list_item.html

24 lines
778 B
HTML
Executable File

<article class="row">
<div class="date col-lg-2 col-md-2 col-sm-2">
<p class="day">{{ post.date | date: "%d" }}</p>
<p class="month">{{ post.date | date: "%b/%Y" }}</p>
<p class="category">{{ post.category }}</p>
</div>
<div class="col-lg-10 col-md-10 col-sm-10">
<h2 class="title"><a href="{{ post.url }}">{{ post.title }}</a></h2>
<ul class="tags">
{% for tag in post.tags %}
<li><i class="fa fa-tag"> {{ tag }}</i></li>
{% endfor %}
</ul>
<br>
<hr class="clearfix">
<p class="excerpt">
{{ post.excerpt | strip_html | newline_to_br }}
</p>
</div>
<h3 class="continue"><a href="{{ post.url }}">FULL ARTICLE</a></h3>
</article>