-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (36 loc) · 994 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
---
layout: home
---
<section class="homepage">
<header>
<h1>Recent Episodes <span><a href="/episodes/">View All Episodes</a></span></h1>
<hr>
</header>
<div class="episode-list">
{% for post in site.posts limit:4 %}
<article class="episode-list__item">
<header>
<div class="episode-number">
{{ post.number }}
</div>
<h2>
<a href="{{ post.url | relative_url }}" title="Episode {{ post.number }} - {{ post.title }}">
{{ post.title | escape }}
</a>
</h2>
<p class="date">
<time datetime="{{ page.date }}" itemprop="datePublished">
{{ post.date | date_to_long_string }}
</time>
</p>
</header>
<p>{{ post.short_description }}</p>
<hr />
</article>
{% endfor %}
</div>
{% include join-slack.html %}
<div class="text-center">
<a class="btn btn--large" href="/episodes/">View All Episodes</a>
</div>
</section>