Skip to content

Commit eef58ff

Browse files
committed
actualizo tabs de taller de git
1 parent 85ec2f2 commit eef58ff

8 files changed

Lines changed: 76 additions & 39 deletions

File tree

_includes/headerTaller.html

Lines changed: 25 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,32 @@
11
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">
22
<div class="taller-header-logo"></div>
33
</a>
4-
<a class="taller-title" rel="author" href="{{ "/talleres/" | relative_url | append: page.tallerid }}/index">
5-
<img src="/static/img/{{page.tallerid}}/full-logo.min.svg" height="50px" />
4+
5+
{% if page.tallerid and page.tallerid != "talleres" %}
6+
{% assign taller_link = '/talleres/' | append: page.tallerid | append: '/' %}
7+
{% else %}
8+
{% assign taller_link = '/talleres/' %}
9+
{% endif %}
10+
11+
<a class="taller-title" rel="author" href="{{ taller_link | relative_url }}">
12+
<img src="/static/img/{% if page.tallerid and page.tallerid != "talleres" %}{{ page.tallerid }}/full-logo.min.svg{% else %}talleres/full-logo.min.svg{% endif %}" height="50px" />
613
</a>
714

815
<nav class="site-nav taller-nav">
9-
<div class="trigger">
10-
{% assign pages = site.talleres | sort: 'weight' %}
11-
{% for parteTaller in pages %}
12-
{% if parteTaller.layout == "taller" and parteTaller.tallerid == page.tallerid %}
13-
<a class="page-link" href="{{ parteTaller.url | prepend: site.baseurl }}">{{ parteTaller .title }}</a>
14-
{% endif %}
15-
{% endfor %}
16-
{% if site.show_preinscripcion %}
17-
<a class="page-link" href="{{ site.preinscripcion_url }}">Inscripción</a>
18-
{% endif %}
19-
{% if site.show_feedback %}
20-
<a class="page-link" href="{{ site.feedback_url }}">¡Danos tu opinión!</a>
16+
<div class="trigger">
17+
{% assign pages = site.talleres | sort: 'weight' %}
18+
{% for parteTaller in pages %}
19+
{% if parteTaller.layout == "taller" and parteTaller.tallerid == page.tallerid %}
20+
<a class="page-link" href="{{ parteTaller.url | prepend: site.baseurl }}">{{ parteTaller.title }}</a>
2121
{% endif %}
22-
</div>
23-
</nav>
22+
{% endfor %}
23+
24+
{% if site.show_preinscripcion %}
25+
<a class="page-link" href="{{ site.preinscripcion_url }}">Inscripción</a>
26+
{% endif %}
27+
28+
{% if site.show_feedback %}
29+
<a class="page-link" href="{{ site.feedback_url }}">¡Danos tu opinión!</a>
30+
{% endif %}
31+
</div>
32+
</nav>

_layouts/taller.html

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
layout: default
33
---
44

5-
<h1>{{page.title}}</h1>
6-
7-
{{content}}
5+
{% if page.title == "Volver a talleres" %}
6+
<meta http-equiv="refresh" content="0; url={{ site.baseurl }}/talleres/" />
7+
{% else %}
8+
<h1>{{page.title}}</h1>
9+
{{content}}
10+
{% endif %}

_layouts/tallerIndex.html

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,14 @@
66
{% include header.html %}
77
<main class="page-content">
88
<div class="wrapper">
9-
<div class="index-nuevos-talleres">
10-
<h2>¡Nuevos talleres!</h2>
11-
<p>Queremos incorporar <strong>nuevos talleres</strong> a la ComCom. Tenemos algunas
12-
ideas, pero necesitamos gente que nos dé una mano para organizarlos
13-
y llevarlos a cabo.</p> <p>Si te gustaría sumarte, completá
14-
<a href="https://goo.gl/forms/bqeaCQBnDDkhOvLL2">este formulario</a>.</p>
15-
</div>
169
<div class="centered">
1710
<ul class="index-talleres">
1811
{% for taller in site.talleres %}
1912
{% if taller.tags contains 'index' %}
2013
<a href="{{ taller.url | prepend: site.baseurl }}">
2114
<li class="index-taller-item">
22-
2315
<img class="taller-logo" src="/static/img/{{taller.tallerid}}/small-logo.min.svg" height="96"></img>
2416
<div class="taller-nombre">{{ taller.title }}</div>
25-
<div class="taller-fecha">{{ taller.edicion }}</div>
2617
</li>
2718
</a>
2819
{% endif %}

_talleres/git/index.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
---
22
layout: taller
3-
title: ¿Que es Git?
4-
permalink: /talleres/git/index
5-
edicion: "2019-1c"
3+
title: Taller de Git
4+
permalink: /talleres/git/
65
tallerid: git
76
weight: 0
87
tags: index

_talleres/git/inscripcion.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
layout: taller
3+
title: Inscripción
4+
permalink: /talleres/git/inscripcion/
5+
tallerid: git
6+
weight: 5
7+
---
8+
9+
📌 **Cupos limitados, prioridad para estudiantes de materias afines.**
10+
11+
La modalidad será presencial, en los labos de la facu.
12+
13+
El taller consta de 3 clases con los siguientes temas:
14+
+ Introducción a bash.
15+
+ Introducción a Git y sus comandos básicos.
16+
+ Branches y comandos avanzados.
17+
18+
Recomendado para estudiantes de _Introducción a la Programación/Algoritmos 1._
19+
20+
👉 [Inscipción al taller de Git](https://forms.gle/gdLJyd6vtmRRUM7D6)

_talleres/git/recursos.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,14 @@ tallerid: git
66
weight: 3
77
---
88

9+
## Clases grabadas
10+
La idea del taller presencial es tener un espacio físico para que puedan venir y hacer preguntas y nos parece el mejor formato para dar el taller y que puedan interactuar entre ustedes.
11+
De cualquier manera, en 2024 grabamos las clases para quienes no pudieron asistir presencialmente, les dejamos el link para que las puedan ver si no pueden asistir. [Link a la playlist](https://www.youtube.com/watch?v=QnMnBHILYs8&list=PLTOs3NjfmiSQnbqq2QgRQVaZug_EkEhf3&pp=gAQB).
12+
913
## Diapositivas del curso
1014

11-
* [**Clase 1**]({{ site.baseurl }}/static/descargas/git/clase1.pdf){:target="_blank"}. Introducción, comandos básicos (`clone`, `add`, `commit`, `status`, `init`), repositorios remotos (`remote`, `pull`, `push`), resolución de conflictos.
12-
* [**Clase 2**]({{ site.baseurl }}/static/descargas/git/clase2.pdf){:target="_blank"}. Eliminar y mover archivos (`rm`, `mv`), revisar cambios anteriores (`diff`, `log`), ramificaciones (_branches_: `branch`, `checkout`), otros comandos (`commit --amend`, `revert`, `stash`), extras.
15+
Tenemos las diapositivas y foros para consultas en nuestro [campus](https://campus.exactas.uba.ar/course/view.php?id=416).
16+
1317

1418
## Links de interés
1519

_talleres/git/volver.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
layout: taller
3+
title: Volver a talleres
4+
permalink: /talleres/git/volver.html
5+
tallerid: git
6+
weight: 99
7+
---
8+
9+
# Volver a la página de talleres
10+
11+
[< Volver al índice de talleres]({{ site.baseurl }}/talleres/)

talleres.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
layout: page
3-
title: Talleres de Git y LaTeX
4-
date: 2024-09-02 20:26:00 -0300
5-
permalink: /talleres
2+
layout: tallerIndex
3+
title: Talleres de Git y LaTex
4+
permalink: /talleres/
5+
tallerid: talleres
6+
weight: 0
7+
tags: index
68
---
79

8-
# ¡Preinscripción abierta a los talleres de la ComCom!
9-
1010
¿Querés aprender a usar herramientas clave para tu carrera? Desde la Comisión de Estudiantes de Computación (ComCom), seguimos organizando talleres pensados para estudiantes dictados por estudiantes, con el apoyo del Departamento de Computación.
1111

1212
## 📝 Taller de **LaTeX**

0 commit comments

Comments
 (0)