-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpage.html
More file actions
99 lines (85 loc) · 3.51 KB
/
page.html
File metadata and controls
99 lines (85 loc) · 3.51 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{% extends "base.html" %}
{% block html_lang %}{{ page.lang }}{% endblock %}
{% block title %}{{ SITENAME }} - {{ page.title|striptags }}{%endblock%}
{% block head %}
{{ super() }}
{% import 'translations.html' as translations with context %}
{% if translations.entry_hreflang(page) %}
{{ translations.entry_hreflang(page) }}
{% endif %}
{% endblock %}
{% block content %}
<h1>{{ page.title }}</h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
{{ page.content }}
<!-- Agrega imagenes de integrantes automáticamente -->
{% if page.title == 'Coordinación' %}
<h2>Integrantes</h2>
<div class="row">
{% for nombre, datos in INTEGRANTES.items() %}
{%if datos['activo']== "1" %}
<div class="col-lg-3 mb-4">
<div class="row">
<div class="col-md-12">
<img class="img-fluid rounded-circle mx-auto d-block" src="../images/{{ datos['img'] }}" alt="{{ nombre }}" />
</div>
<div class="col-md-12 text-center">
<div class="pt-2">
<h5 class="mt-4 font-weight-medium mb-0">{{ nombre }}</h5>
<h6 class="subtitle mb-2 mt-2">
{%if datos['linkedin'] %}<a target="_blank" href="https://linkedin.com/in/{{ datos['linkedin'] }}"><i class="fab fa-linkedin fa-lg mr-1"></i></a>{% endif %}
{%if datos['github'] %}<a target="_blank" href="https://github.com/{{ datos['github'] }}"><i class="fab fa-github fa-lg mr-1"></i></a>{% endif %}
{%if datos['twitter'] %}<a target="_blank" href="https://x.com/{{ datos['twitter'] }}"><i class="fab fa-x-twitter fa-lg mr-1"></i></a>{% endif %}
</h6>
<p class="card-text-coord">
{{ datos['descripcion'] }}
</p>
<hr/>
</div>
</div>
</div> <!-- end row -->
</div> <!-- end col -->
{% endif %}
{% endfor %}
</div>
<br>
<h2>Integrantes inactivos</h2>
<p>
Estamos conscientes de que todo tiene un ciclo. Queremos expresar nuestro agradecimiento a
las personas que han participado activamente en la comunidad en el pasado. Les deseamos éxito
y prosperidad en sus trayectorias profesionales. </p>
<div class="row">
{% for nombre, datos in INTEGRANTES.items() %}
{%if datos['activo']== "0" %}
<div class="col-lg-3 mb-4">
<div class="row">
<div class="col-md-12">
<img class="img-fluid rounded-circle mx-auto d-block" src="../images/{{ datos['img'] }}" alt="{{ nombre }}" />
</div>
<div class="col-md-12 text-center">
<div class="pt-2">
<h5 class="mt-4 font-weight-medium mb-0">{{ nombre }}</h5>
<h6 class="subtitle mb-2 mt-2">
{%if datos['linkedin'] %}<a target="_blank" href="https://linkedin.com/in/{{ datos['linkedin'] }}"><i class="fab fa-linkedin fa-lg mr-1"></i></a>{% endif %}
{%if datos['github'] %}<a target="_blank" href="https://github.com/{{ datos['github'] }}"><i class="fab fa-github fa-lg mr-1"></i></a>{% endif %}
{%if datos['twitter'] %}<a target="_blank" href="https://x.com/{{ datos['twitter'] }}"><i class="fab fa-x-twitter fa-lg mr-1"></i></a>{% endif %}
</h6>
<p class="card-text-coord">
{{ datos['descripcion'] }}
</p>
<hr/>
</div>
</div>
</div> <!-- end row -->
</div> <!-- end col -->
{% endif %}
{% endfor %}
</div>
{% endif %}
{% if page.modified %}
<p>
Last updated: {{ page.locale_modified }}
</p>
{% endif %}
{% endblock %}