forked from devnaestrada/devnaestrada.com.br
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (36 loc) · 1.05 KB
/
Copy pathindex.html
File metadata and controls
41 lines (36 loc) · 1.05 KB
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
---
<div class="page-home">
{% for post in paginator.posts %}
<article class="home-cast">
<!-- home avatar -->
<img src="http://i1.sndcdn.com/artworks-{{ post.soundcloud-post-image }}-original.jpg" alt="{{ post.title }}" class="home-cast__avatar" />
<div class="home-cast__holder">
<h2 class="home-cast__title">
<a href="{{ post.url }}">
{{ post.title }} <i class="fa fa-hand-spock-o"></i>
</a>
</h2>
<p class="home-cast__description">
{{ post.description }}
</p>
</div>
</article>
{% endfor %}
<!-- Pagination links -->
<div class="pagination">
{% if paginator.previous_page %}
<a href="{{ paginator.previous_page_path }}" class="btn">
<i class="fa fa-arrow-circle-left"></i>
Voltar
</a>
{% endif %}
{% if paginator.next_page %}
<a href="{{ paginator.next_page_path }}" class="btn">
Avançar
<i class="fa fa-arrow-circle-right"></i>
</a>
{% endif %}
</div>
</div>