16 lines
407 B
HTML
16 lines
407 B
HTML
<div class="post">
|
|
<h2 class="center-on-mobiles">
|
|
<a href="{{ post.url }}">
|
|
{{ post.title }}
|
|
</a>
|
|
</h2>
|
|
<p class="post-content">
|
|
{{ post.content }}
|
|
</p>
|
|
<p class="post-details">
|
|
Posted on {{ post.date | date_to_string }}
|
|
by <a href="https://github.com/{{ post.author }}">@{{ post.author }}</a>,
|
|
filed in {{ post.categories | array_to_sentence_string }}
|
|
</p>
|
|
</div>
|