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
696 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 function in functions %}
<tr>
<td class="title">{{function.title}}</td>
<td class="description">{{function.description}}</td>
<td class="link"><a href="{{function.title}}/">></a></td>
</tr>
{% endfor %}
</table>
{% endblock %}