latin/app/templates/index.html

20 lines
596 B
HTML

<!DOCTYPE html>
<html lang="la">
<head>
<meta charset="UTF-8"/>
<title>Lingua Latina Per Se Illustrata</title>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/LLPSI.css') }}">
</head>
<body>
<h1>Lingua Latina Per Se Illustrata</h1>
<dl>
{% for capitulum in capitula %}
<dt>{{capitulum.title}}
<dd><a href="/llpsi/{{capitulum.filename}}_Pensum_A">Pensum A</a></dd>
<dd><a href="/llpsi/{{capitulum.filename}}_Pensum_B">Pensum B</a></dd>
</dt>
{% endfor %}
</dl>
</body>
</html>