-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (29 loc) · 987 Bytes
/
index.html
File metadata and controls
31 lines (29 loc) · 987 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
30
31
---
layout: default
title: Free time - Palestras para desenvolvedores!
---
<div class="intro">
<a class="arrow" data-scroll href="#main"></a>
</div>
<main id="main" role="main" class="main">
{% for post in paginator.posts %}
<div class="lectures">
<article class="lecture-content">
<a href="{{ post.link }}" class="lecture-thumbnails mfp-iframe" target="_blank">
<img src="/assets/image/palestrante-default.jpg" alt="{{ post.speakers }}" data-echo=" {{ post.img }}">
</a>
<a class="lecture-info mfp-iframe" href="{{ post.link }}">
<span class="lecture-date">Por: {{ post.speakers }}</span>
<h2 class="lecture-title">{{ post.title | strip_html | truncate: 47 }}</h2>
</a>
</article>
</div>
{% endfor %}
<p class="pagination">
{% if paginator.next_page %}
<a class="older" href="/page{{paginator.next_page}}"></a>
{% else %}
<span class="older"></span>
{% endif %}
</p>
</main>