40 lines
956 B
Django/Jinja
40 lines
956 B
Django/Jinja
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<style type="text/css">
|
|
body {
|
|
margin: 40px auto;
|
|
max-width: 650px;
|
|
line-height: 1.6;
|
|
font-size: 18px;
|
|
color: #444;
|
|
padding: 0 10px
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3 {
|
|
line-height: 1.2
|
|
}
|
|
</style>
|
|
<title>{{ title }}</title>
|
|
</head>
|
|
<body>
|
|
{% if board.boards |length > 0 %}
|
|
<ul>
|
|
{% for board in board.boards %}
|
|
<li><a href={{ "../board/" + board.title |url_replacer + ".html" }}>{{ board.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
<hr>
|
|
{% endif %}
|
|
<ul>
|
|
{% for thread in board.threads %}
|
|
<li><a href={{ "thread/" + thread.title |url_replacer + ".html" }}>{{ thread.title }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|