Skip to content

Commit dd26bda

Browse files
Arreglo error en definición filtro peine del TP
1 parent c08e458 commit dd26bda

156 files changed

Lines changed: 23567 additions & 19466 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

_site/404.html

Lines changed: 136 additions & 361 deletions
Large diffs are not rendered by default.

_site/_includes/bibmain.html

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{% for libro in bibliografia %}
2+
<div class="boot-card boot-card-mb-3">
3+
<div class="boot-card-row boot-card-g-0">
4+
<div class="boot-card-col-md-4">
5+
<img src="{{libro.portada}}" style="max-width: 200px" class="boot-card-img-fluid rounded-start" alt="...">
6+
</div>
7+
<div class="boot-card-col-md-8">
8+
<div class="boot-card-body">
9+
<h3 class="boot-card-title">{{libro.titulo}}</h3>
10+
<h5 class="boot-card-subtitle">{{libro.autores}}</h5>
11+
<p class="boot-card-text">{{libro.edicion}} ({{libro.fecha}}), {{libro.editorial}}, ISBN: {{libro.isbn}}.</p>
12+
{% if libro.observaciones %}
13+
<h6 class="boot-card-subtitle">Observaciones sobre la edición a usar</h6>
14+
<p class="boot-card-text">
15+
{{libro.observaciones}}
16+
</p>
17+
{% endif %}
18+
</div>
19+
</div>
20+
</div>
21+
</div>
22+
{% endfor %}

_site/_includes/bibother.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<ul>
2+
{% for libro in bibliografia %}
3+
<li>
4+
<p>{{libro.autores}}, {%if libro.url %}<a href="{{libro.url}}">{% endif %}<i>{{libro.titulo}}</i>{% if libro.url %}</a>.{% endif %}, {{libro.editorial}}, {{libro.fecha}}. </p>
5+
</li>
6+
{% endfor %}
7+
</ul>

_site/_includes/calendarios.html

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<div class="cards">
2+
{% for docente in docentes %}
3+
<div class="card">
4+
<div class="card-header">
5+
<a href="{{docente.calendario}}&amp;headers=false&amp;chrome=false">{% if docente.foto %}
6+
<img title="{{docente.nombre}}"
7+
src="/assets/img/docentes/{{docente.foto}}" alt="{{docente.nombre}}">
8+
{% endif %}</a>
9+
</div>
10+
</div>
11+
{% endfor %}
12+
</div>

_site/_includes/docentes.html

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<div class="cards">
2+
{% for docente in docentes %}
3+
<div class="card">
4+
<div class="card-header">
5+
{% if docente.foto %}
6+
<img title="{{docente.nombre}}"
7+
src="/assets/img/docentes/{{docente.foto}}" alt="{{docente.nombre}}">
8+
{% endif %}
9+
</div>
10+
<div class="card-body">
11+
<span style="font-style: italic">{{docente.nombre}}</span>
12+
{% if docente.github %} <span>github: <a href="https://github.com/{{docente.github}}/">{{docente.github}}</a></span>{% endif %}
13+
</div>
14+
</div>
15+
{% endfor %}
16+
</div>

0 commit comments

Comments
 (0)