Skip to content

Instantly share code, notes, and snippets.

@amc1981
Last active August 2, 2023 10:53
Show Gist options
  • Save amc1981/c1d589fb2125f6e0b07097aff79bb092 to your computer and use it in GitHub Desktop.
Save amc1981/c1d589fb2125f6e0b07097aff79bb092 to your computer and use it in GitHub Desktop.
collections:
featured_categories:
permalink: /blog/categories/:name/
output: true
featured_tags:
permalink: /blog/tags/:name/
output: true
cursos:
permalink: /blog/:collection/:name
output: true
sort_by: lesson
---
layout: default
---
{% assign num_filtered_posts = site.posts | where: 'curso', page.slug | size %}
{% assign filtered_posts = site.posts | where: 'curso', page.slug %}
{% for cursos in site.cursos %}
{% if cursos.slug == page.slug %}
{% assign curso_link = cursos.link %}
{% endif %}
{% endfor %}
<p><a href="{{ curso_link }}" target="_blank">Enlace al curso</a></p>
<hr>
{% if num_filtered_posts > 0 %}
{% for post in filtered_posts %}
<ul>
<li>
<h3><a href="{{ post.url }}">{{ post.title }}</a> </h3>
<p>Etiquetas: / {% for tag in post.tags %}<a href="/blog/tags/{{ tag }}"> {{ tag }} </a>/{% endfor %} - {{ post.date | date_to_string}}</p>
<hr>
</li>
</ul>
{% endfor %}
{% else %}
<p>Aún no existen artículos para este curso</p>
{% endif %}
---
layout: page
title: Apuntes
name: cursos
slug: cursos
description: >
Relación de apuntes tomados en cursos que voy haciendo, sobre conceptos clave que necesito entender mejor.
---
<ul>
{% for curso in site.cursos %}
<li>
<h2><a href="/blog/cursos/{{ curso.slug }}">{{ curso.name }}</a></h2>
<p><q>{{ curso.description }}</q> -> <a href="{{ curso.link }}" Target="_blank">Enlace al curso</a></p>
<hr>
</li>
{% endfor %}
</ul>
collections:
tutorials:
order:
- hello-world.md
- introduction.md
- basic-concepts.md
- advanced-concepts.md
name slug link description
Kubernetes for begginers
kubernetes-for-beginners
Aprenda Kubernetes de una manera simple, fácil y divertida con ejercicios prácticos de codificación. Para principiantes en DevOps.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment