-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuf_old.html
45 lines (44 loc) · 1.35 KB
/
uf_old.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
40
41
42
43
44
45
---
# Feel free to add content and custom Front Matter to this file.
# To modify the layout, see https://jekyllrb.com/docs/themes/#overriding-theme-defaults
title: Unidad de Fomento (UF)
layout: default
---
<div class="row">
<div class="col-12 col-md-6 col-lg-8">
<table class="table table-striped">
<thead class="thead-dark">
<tr>
<th>Día</th>
<th>Valor</th>
</tr>
</thead>
<tbody>
{% for member in site.data.uf %}
<tr>
<th>{{member.day}}</th>
<td>$ {{member['oct']}}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
<div class="col-12 col-md-6 col-lg-4">
<div class="card">
<div class="list-group list-group-flush">
<a class="list-group-item">Enero</a>
<a class="list-group-item">Febrero</a>
<a class="list-group-item">Marzo</a>
<a class="list-group-item">Abril</a>
<a class="list-group-item">Mayo</a>
<a class="list-group-item">Junio</a>
<a class="list-group-item">Julio</a>
<a class="list-group-item">Agosto</a>
<a class="list-group-item">Septiembre</a>
<a class="list-group-item">Octubre</a>
<a class="list-group-item">Noviembre</a>
<a class="list-group-item">Diciembre</a>
</div>
</div>
</div>
</div>