edgarluque.com/templates/index.html

29 lines
1 KiB
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>
2024-02-13 08:50:52 +00:00
This is my personal website, where I post articles and other stuff, usually about coding. Opinions are my own.
2021-12-24 07:51:39 +00:00
</p>
2021-12-23 16:38:19 +00:00
2023-12-29 13:24:59 +00:00
<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"
2023-12-29 13:10:47 +00:00
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>
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>
2024-02-15 09:30:47 +00:00
<span><time datetime="{{ page.date }}">{{ page.date }}</time> - </span>
2023-12-29 13:10:47 +00:00
<a href="{{ page.permalink }}" title="{{ page.description }}">{{ page.title }}</a>
2021-12-24 11:14:57 +00:00
</li>
{% endfor %}
2021-12-24 07:51:39 +00:00
</ul>
2021-12-23 16:38:19 +00:00
2023-06-27 09:57:32 +00:00
<p><a href="/atom.xml">RSS Feed</a></p>
2021-12-24 07:51:39 +00:00
{% endblock content %}