jekyll/docs/_layouts/news_item.html

32 lines
718 B
HTML

---
layout: news
---
<article>
<h2>
{{ page.title }}
<a href="{{ page.url }}" class="header-link" title="Permalink">
<span class="sr-only">Permalink</span>
<i class="fa fa-link"></i>
</a>
</h2>
<span class="post-category">
<span class="label">
{{- page.categories | array_to_sentence_string -}}
</span>
</span>
<div class="post-meta">
<span class="post-date">
{{- page.date | date_to_string -}}
</span>
{% assign author = page.author -%}
<a href="https://github.com/{{ author }}" class="post-author">
{% avatar user=author size=24 -%}
{{- author -}}
</a>
</div>
<div class="post-content">
{{ content }}
</div>
</article>