bigger update

This commit is contained in:
2023-06-17 15:58:42 +02:00
parent 5c1910292e
commit 03d46cb73a
19 changed files with 384 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{% extends "base.html" %}
{% block content %}
<section class="project-list content">
<h1>My Projects</h1>
{% for project in section.pages %}
<a href="{{ project.permalink }}">
<div class="description">
<div class="title">{{ project.title }}</div>
<p>
{% if project.description %}
{{ project.description }}
{% else %}
&hellip;
{% endif %}
</p>
</div>
</a>
{% endfor %}
</section>
{% endblock content %}