-
Notifications
You must be signed in to change notification settings - Fork 44
/
index.html
executable file
·41 lines (38 loc) · 1.24 KB
/
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
39
40
41
---
layout: default
---
{% include modules/quick-access.html %}
{% for post in paginator.posts %}
<article class="episode">
<div class="episode-holder">
<a href="{{ post.url }}">
{% if post.soundcloud-post-image %}
<img class="episode-artwork" src="https://assets.libsyn.com/secure/show/104268/artworks-{{ post.soundcloud-post-image }}-original.jpg" alt="{{ post.home-title }}" />
{% endif %}
{% if post.libsyn-image %}
<img class="episode-artwork" src="https://assets.libsyn.com/secure/show/104268/{{ post.libsyn-image }}" alt="{{ post.home-title }}" />
{% endif %}
</a>
<span class="episode__number">DEVNAESTRADA</span>
<a href="{{ post.url }}" class="episode-link">
<h1 class="episode-title">{{ post.title }}</h1>
</a>
<p class="episode-description">
{{ post.description }}
</p>
</div>
</article>
{% endfor %}
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="btn">
Mais recentes
</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="btn">
Mais antigos
</a>
{% endif %}
</div>