-
Notifications
You must be signed in to change notification settings - Fork 0
/
eventos.html
43 lines (37 loc) · 1.23 KB
/
eventos.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
37
38
39
---
title: Eventos
description: Eventos presentes, pasados y futuros.
thumbnail: /assets/favicon/apple-touch-icon.png
layout: default
header: header-common.html
footer: footer-common.html
type: Eventos
---
<!-- Falta incluir la fecha -->
<div class="container">
<div class="row mt-super">
{% for evento in site.eventos reversed %}
<div class="col-12 col-lg-6 mb-2">
<div class="card text-both-black background-both-yellow h-100 border-both-black card-hover">
<div class="card-body">
<div class="row">
<div class="col-12">
<h2 class="bold mb-0">{{ evento.title }}</h2>
<span class="mb-2 badge rounded-pill background-both-black text-both-yellow">{{ evento.badge }}</span>
</div>
<div class="col-9">
<p class="card-text">{{evento.description}}</p>
</div>
<div class="col-3">
<img src="{{evento.thumbnail}}" class="w-100" alt="{{ evento.title }}">
</div>
</div>
</div>
<div class="card-footer text-center">
<a href="{{ evento.url }}.html" class="stretched-link btn btn-dark">Visitar</a>
</div>
</div>
</div>
{% endfor %}
</div>
</div>