website/templates/project_list.html
2023-06-17 16:04:09 +02:00

22 lines
473 B
HTML

{% 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 %}