-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (24 loc) · 774 Bytes
/
index.html
File metadata and controls
29 lines (24 loc) · 774 Bytes
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
---
layout: default
---
<div class="post-list">
<article class="warning">
<p class="warning-text">¿Quieres proponer algún tema?</p>
<a href="https://github.com/WeCodeSign/nuevos-episodios-e-invitades" target="_blank">Aquí podéis participar</a>
</article>
<ul class="reset-bullet">
{% for post in paginator.posts %}
{% unless post.preview %}
{% include post-list.html post=post %}
{% endunless %}
{% endfor %}
</ul>
<ul class="pagination">
{% if paginator.previous_page %}
<li><a class="link" href="{{ paginator.previous_page_path }}">Anterior</a></li>
{% endif %}
{% if paginator.next_page %}
<li><a class="link" href="{{ paginator.next_page_path }}">Siguiente</a></li>
{% endif %}
</ul>
</div>