Skip to content

Commit

Permalink
Show post time in menu
Browse files Browse the repository at this point in the history
  • Loading branch information
iBug committed Dec 5, 2019
1 parent 2a626f2 commit a92a7a1
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions _includes/archive-single.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
{% if post.header.teaser %}
{% capture teaser %}{{ post.header.teaser }}{% endcapture %}
{% else %}
{% assign teaser = site.teaser %}
{% endif %}

{% if post.id %}
{% assign title = post.title | markdownify | remove: "<p>" | remove: "</p>" %}
{% else %}
{% assign title = post.title %}
{% endif %}

<div class="{{ include.type | default: "list" }}__item">
<article class="archive__item" itemscope itemtype="https://schema.org/CreativeWork">
{% if include.type == "grid" and teaser %}
<div class="archive__item-teaser">
<img src=
{% if teaser contains "://" %}
"{{ teaser }}"
{% else %}
"{{ teaser | relative_url }}"
{% endif %}
alt="">
</div>
{% endif %}
<h2 class="archive__item-title" itemprop="headline">
{% if post.link %}
<a href="{{ post.link }}">{{ title }}</a> <a href="{{ post.url | relative_url }}" rel="permalink"><i class="fas fa-link" aria-hidden="true" title="permalink"></i><span class="sr-only">Permalink</span></a>
{% else %}
<a href="{{ post.url | relative_url }}" rel="permalink">{{ title }}</a>
{% endif %}
</h2>
<p class="page__meta">
<span style="margin-right: 1em;">
<i class="far fa-calendar-alt" aria-hidden="true"></i> {{ post.date | date: "%B %d, %Y" }}
</span>
{% if post.read_time %}
<i class="far fa-clock" aria-hidden="true"></i> {% include read-time.html %}
{% endif %}
</p>
{% if post.excerpt %}<p class="archive__item-excerpt" itemprop="description">{{ post.excerpt | markdownify | strip_html | truncate: 160 }}</p>{% endif %}
</article>
</div>

0 comments on commit a92a7a1

Please sign in to comment.