edgarluque.com/templates/index.html
2024-02-15 10:30:47 +01:00

29 lines
1 KiB
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. Opinions are my own.
</p>
<p>This blog has no ads, please consider sponsoring me, thanks! <iframe src="https://github.com/sponsors/edg-l/button" title="Sponsor edg-l" height="32"
width="114" style="border: 0; border-radius: 6px; display: inline-block; vertical-align: middle;"></iframe>
<a href="https://liberapay.com/edgl/donate">
<img style="display: inline-block; vertical-align: middle;" alt="Donate using Liberapay"
src="https://liberapay.com/assets/widgets/donate.svg">
</a>
</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 %}