-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpublicaciones.html
59 lines (48 loc) · 1.98 KB
/
publicaciones.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
layout: default
title: Publicaciones
---
<div class="page-title-box clearfix">
<span class="tittle-pagina">{{ page.title }}</span>
</div>
<h3>En proceso de Publicación</h3>
<table class="table table-hover">
{% for grup in site.data.publicaciones2016 %}
{% if grup.Publicado == "NO" %}
<tr>
<td style="text-align:justify; vertical-align:middle;">
<div style="font-size: 16px; color: #498AB8;">{{ grup.Articulo }}</div>
<div style="font-size: 14px;">{{ grup.Revista }}</div>
<div style="font-size: 12px;">{{ grup.Autores }}</div>
<div style="font-size: 12px; color: #498AB8;">{{ grup.Area }}</div>
</td>
</tr>
{% endif %}
{% endfor %}
</table>
{% for pub in site.data.year-publicaciones %}
{% if pub.Anho > "2010" %}
<h3>{{ pub.Anho }}</h3>
<table class="table table-hover">
{% for grup in site.data.publicaciones2016 %}
{% if grup.Anho == pub.Anho %}
{% if grup.Ucsp == "SI" %}
{% if grup.Publicado == "SI" %}
<tr>
<td style="text-align:justify; vertical-align:middle;">
<div style="font-size: 16px;"><a href={{grup.Link}} target="_blank">{{ grup.Articulo }}</a></div>
<div style="font-size: 14px;">{{ grup.Revista }}</div>
<div style="font-size: 12px;">{{ grup.Autores }}</div>
<div style="font-size: 12px; color: #498AB8;">{{ grup.Area }}</div>
</td>
</tr>
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
</table>
{% endif %}
{% endfor %}
<br />
<br />
<hr />