edgarluque.com/templates/index.html
2021-12-23 17:38:19 +01:00

20 lines
561 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, ideas or anything related to the tech world.</p>
{% set section = get_section(path="blog/_index.md") %}
<h2>Articles</h2>
<div class="posts">
{% for page in section.pages %}
<article class="post">
<span>{{ page.date }}: </span>
<a href="{{ page.permalink }}" >{{ page.title }}</a>
</article>
{% endfor %}
</div>
{% endblock content %}