edgarluque.com/templates/index.html
2021-12-24 13:53:54 +01:00

20 lines
548 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>
{% endblock content %}