website/templates/project_list.html

29 lines
657 B
HTML
Raw Normal View History

2023-06-17 15:58:42 +02:00
{% extends "base.html" %}
2023-08-29 10:08:14 +02:00
{% block styles %}
<link rel="stylesheet" href="/project_list.css">
{% endblock styles %}
2023-06-17 15:58:42 +02:00
{% block content %}
<section class="project-list content">
<h1>My Projects</h1>
{% for project in section.pages %}
2023-08-29 10:08:14 +02:00
<div class="project">
<a class="title" href="{{ project.permalink }}">
{{ project.title }}
</a>
<p class="description">
{% if project.description %}
{{ project.description }}
{% else %}
&hellip;
{% endif %}
</p>
<hr>
<p>{{ project.date }} | {{ project.extra.state}}</p>
2023-06-17 15:58:42 +02:00
</div>
2023-08-29 10:08:14 +02:00
{% endfor %}
2023-06-17 15:58:42 +02:00
</section>
{% endblock content %}