{% extends "base.html" %} {% block main_content %}
{{ section.content | safe }}
{# Inicio seccion "BITACORA" #}

Bitácora

{% set posts = get_section(path="posts/_index.md") %}
    {% for page in posts.pages | sort(attribute="date") | reverse | slice(end=3) %}
  • > {{ page.date | date(format="%Y-%m-%d") }}

    {{ page.title }}

    {{ page.description | default(value="Sin descripción.") }}

  • {% endfor %}
Ver todos [{{ posts.pages | length }}] →
{# Fin seccion "BITACORA" #}
{% endblock main_content %}