-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcalendar.html
35 lines (35 loc) · 1 KB
/
calendar.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
---
layout: default
permalink: /calendar
title: Calendario 2024
---
<div class="calendar-site">
<div class="calendar-wrapper">
<h1 style="text-align: center;">
Calendario de Actividades 2024
</h1>
</div>
<div class="calendar-events">
{%- for event in site.data.calendar -%}
<div class="divider"></div>
<div class="event">
<div class="event-img">
<img src="{{ event.image }}" alt="{{ event.name }}" width="100"/>
</div>
<div>
<div class="event-title">
<h3>
{{ event.title }}
</h3>
<h4>
{{ event.date }}
</h4>
</div>
<p>
{{ event.description }}
</p>
</div>
</div>
{%- endfor -%}
</div>
</div>