jekyll/docs/_includes/news_item_archive.html

27 lines
699 B
HTML

<article>
<div class="cell-left">
<span class="post-category">
<span class="label">
{{- post.categories | array_to_sentence_string -}}
</span>
</span>
</div>
<div class="cell-right">
<div class="post-meta">
<h2 class="post-title">
<a href="{{ post.url }}">
{{- post.title -}}
</a>
</h2>
<span class="post-date">
{{- post.date | date_to_string -}}
</span>
{% assign author = post.author -%}
<a href="https://github.com/{{ author }}" class="post-author">
{% avatar user=author size=24 -%}
<span class="author-name">{{ author }}</span>
</a>
</div>
</div>
</article>