safing-web/_includes/new/cast.html
2019-11-14 12:05:20 +01:00

23 lines
826 B
HTML

<content>
<div class="cast">
<div class="c-l">
{% assign sorted_podcasts = site.podcasts | reverse %}
{% for episode in sorted_podcasts limit: 4 %}
<a href="{{ episode.url }}">
<img src="{{ site.img_url }}podcast.png" alt="">
<div>
{% assign title_length = episode.title | size %}
<span>{{ episode.title | slice: 7, title_length }}</span>
<p>{{ episode.title | slice: 0, 4 }}</p>
</div>
</a>
{% endfor %}
</div>
<div class="c-r">
<h1>Stay up to date</h1>
<p>
Listen to our podcast where we give insight into our company. Ranging from the current development progress to our latest challenges to our thought process behind making important decisions.
</p>
</div>
</div>
</content>