{% extends "base.html" %} {% block content %}

Welcome to my website

This is my personal website, where I post articles and other stuff, usually about coding, ideas or anything related to the tech world.

{% set section = get_section(path="blog/_index.md") %}

Articles

{% for page in section.pages %}
{{ page.date }}: {{ page.title }}
{% endfor %}
{% endblock content %}