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.

30 lines
667 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Flat Bonfire Framework</title>
<link rel="stylesheet" href="{{url_for('static', filename='style.css')}}" />
</head>
<body>
<h1>Documentation Bonfire</h1>
<main>
{% for key, entry in content.items() %}
<div class="work">
<h2>{{ key }}</h2>
{% for section, text in entry.items()%}
<section>
<h3>{{ section }}</h3>
<pre>{{ text}}</pre>
</section>
{% endfor %}
</div>
{% endfor %}
</main>
</body>
</html>