2020-12-07 00:02:45 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="la">
|
|
|
|
<head>
|
2020-12-07 22:04:05 +01:00
|
|
|
<meta charset="UTF-8"/>
|
2020-12-24 00:15:26 +01:00
|
|
|
<title>Lingua Latīna Per Sē Illūstrāta</title>
|
2020-12-07 22:04:05 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
2020-12-07 16:02:26 +01:00
|
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/LLPSI.css') }}">
|
2020-12-07 00:02:45 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-12-24 00:15:26 +01:00
|
|
|
<h1>Lingua Latīna Per Sē Illūstrāta</h1>
|
2020-12-07 22:04:05 +01:00
|
|
|
<dl>
|
2020-12-07 00:02:45 +01:00
|
|
|
{% for capitulum in capitula %}
|
2020-12-07 22:04:05 +01:00
|
|
|
<dt>{{capitulum.title}}
|
2021-01-07 17:19:52 +01:00
|
|
|
<dd><a href="/llpsi/pensum/{{capitulum.filename}}_Pensum_A">Pensum A</a></dd>
|
|
|
|
<dd><a href="/llpsi/pensum/{{capitulum.filename}}_Pensum_B">Pensum B</a></dd>
|
|
|
|
{% for exercitium in capitulum.exercitia %}
|
|
|
|
<dd><a href="/llpsi/exercitium/{{capitulum.filename}}_Exercitium_{{exercitium}}">Exercitium {{exercitium}}</a></dd>
|
|
|
|
{% endfor %}
|
2020-12-07 22:04:05 +01:00
|
|
|
</dt>
|
2020-12-07 00:02:45 +01:00
|
|
|
{% endfor %}
|
2020-12-07 22:04:05 +01:00
|
|
|
</dl>
|
2020-12-07 00:02:45 +01:00
|
|
|
</body>
|
|
|
|
</html>
|