You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
690 B
HTML
32 lines
690 B
HTML
{% extends "base.html" %}
|
|
|
|
<!-- Additional styles and scripts -->
|
|
{% block head %}
|
|
<link
|
|
rel="stylesheet"
|
|
href="{{url_for('static', filename='css/list.css')}}"
|
|
/>
|
|
{% endblock %}
|
|
|
|
<!-- Title -->
|
|
{% block title %}
|
|
{{title}}
|
|
{% endblock %}
|
|
|
|
|
|
<!-- Contents in the body -->
|
|
{% block content%}
|
|
<p class="description">{{description}}</p>
|
|
<table class="list">
|
|
{% for project in projects %}
|
|
<tr>
|
|
<td class="title">{{project.title}}</td>
|
|
<td class="description">{{project.description}}</td>
|
|
<td class="link"><a href="{{project.slug}}/">></a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endblock %}
|
|
|
|
|