edgarluque.com/templates/index.html

20 lines
548 B
HTML
Raw Normal View History

2021-12-24 07:51:39 +00:00
{% extends "base.html" %} {% block content %}
<h1 class="title">Welcome to my website</h1>
<p>
2021-12-24 12:53:54 +00:00
This is my personal website, where I post articles and other stuff, usually about coding.
2021-12-24 07:51:39 +00:00
</p>
2021-12-23 16:38:19 +00:00
{% set section = get_section(path="blog/_index.md") %}
<h2>Articles</h2>
2021-12-24 07:51:39 +00:00
<ul class="posts">
2021-12-24 11:14:57 +00:00
{% 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 %}
2021-12-24 07:51:39 +00:00
</ul>
2021-12-23 16:38:19 +00:00
2021-12-24 07:51:39 +00:00
{% endblock content %}