mirror of
https://github.com/edg-l/edgarluque.com.git
synced 2024-11-09 17:48:22 +00:00
22 lines
584 B
HTML
22 lines
584 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>
|
|
<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 %}
|