forked from free-time/free-time.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
18 lines (18 loc) · 778 Bytes
/
index.html
File metadata and controls
18 lines (18 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
---
layout: default
title: Free time - Use seu tempo livre pra assistir palestras!
titlesecondary: Últimas palestras adicionadas
---
<main role="main" class="main">
{% for post in site.posts limit:15 %}
<section 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.title }}" data-echo=" {{ post.img }}">
</a>
<a class="mfp-iframe" href="{{ post.link }}"><h2 class="title-lecture">{{ post.title }}</h2></a>
<span class="btn-default watch"><a target="_blank" class="btn-default--link mfp-iframe" href="{{ post.link }}">Assista agora!</a></span>
</article>
</section>
{% endfor %}
</main>