edgarluque.com/templates/index.html
2023-06-27 11:57:32 +02:00

22 lines
589 B
HTML

{% extends "base.html" %} {% block content %}
<h1 class="title">Welcome to my website</h1>
<p>
This is my personal website, where I post articles and other stuff, usually about coding.
</p>
{% set section = get_section(path="blog/_index.md") %}
<h2>Articles</h2>
<ul class="posts">
{% for page in section.pages %}
<li>
<span><time datetime="{{ page.date }}">{{ page.date }}</time>: </span>
<a href="{{ page.permalink }}" title="{{ page.description }}"
>{{ page.title }}</a>
</li>
{% endfor %}
</ul>
<p><a href="/atom.xml">RSS Feed</a></p>
{% endblock content %}