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.
26 lines
904 B
HTML
26 lines
904 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Kamo is writing a thesis about code documentation!</title>
|
|
<link rel="stylesheet" href="{{url_for('static', filename='highlight.css')}}">
|
|
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}">
|
|
</head>
|
|
<body>
|
|
|
|
<header>
|
|
<img class="cover" src="https://git.xpub.nl/kamo/thesis/raw/branch/main/cover.jpg" alt="two frogmouth and a thesis about documentation">
|
|
<div class="info">This page is generated with <a href="https://git.xpub.nl/kamo/readme">Readme</a>, fetching contents from this <a href="https://git.xpub.nl/kamo/thesis/">thesis repository</a></div>
|
|
<div class="last-update">Last update: {{ last_update }}</div>
|
|
</header>
|
|
|
|
{% for content in contents %}
|
|
<section class="chapter">
|
|
{{content|safe}}
|
|
</section>
|
|
{% endfor %}
|
|
|
|
|
|
</body>
|
|
</html>
|