mirror of
https://github.com/safing/web
synced 2025-09-01 18:49:06 +00:00
Add dates to podcast index
This commit is contained in:
parent
cd39d1c172
commit
1bc5448eaf
2 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,7 @@
|
|||
<div>
|
||||
{% assign title_length = episode.title | size %}
|
||||
<span>{{ episode.title | slice: 7, title_length }}</span>
|
||||
<p>{{ episode.title | slice: 0, 4 }}</p>
|
||||
<p>{{ episode.title | slice: 0, 4 }} - {{ episode.date | date: "%-d. %b %Y" }}</p>
|
||||
</div>
|
||||
</a>
|
||||
{% endfor %}
|
||||
|
|
|
@ -17,6 +17,7 @@ layout: podcast
|
|||
<a class="description" href="{{ episode.url }}">{{ episode.title | slice: 7, title_length }}</a>
|
||||
<div class="meta">
|
||||
<span class="ui small text">
|
||||
<i class="calendar alternate icon"></i>{{ episode.date | date: "%-d. %b %Y" }},
|
||||
{% for host in episode.hosts %}
|
||||
<i class="user icon"></i>{{ host }}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Add table
Reference in a new issue