-
Notifications
You must be signed in to change notification settings - Fork 0
/
fichas.html
38 lines (34 loc) · 1.03 KB
/
fichas.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
---
title: Fichas
description: Both es una escuela y un laboratorio. Un punto de encuentro entre tecnología y humanismo.
thumbnail: /assets/favicon/apple-touch-icon.png
layout: default
header: header-common.html
footer: footer-common.html
stylesheet: /assets/css/fichas.css
---
<div class="container">
{% for ficha in site.fichas %}
<div class="row mt-super justify-content-center">
<div class="col-10">
<h1>{{ ficha.title }}</h1>
<h4>
<a href="{{ ficha.link_url }}">{{ ficha.link_title }}</a>
</h4>
</div>
<div class="col-10">
<p class="">{{ ficha.definition }}</p>
</div>
</div>
<div class="row justify-content-center">
<div class="col-10">
<h3>Esto es guay porque...</h3>
{{ ficha.pros | markdownify }}
</div>
<div class="col-10">
<h3>Pero ojo, que...</h3>
{{ ficha.cons | markdownify }}
</div>
</div>
{% endfor %}
</div>