proboards-website-generator/templates/boards.html.j2
Sebastian Hugentobler d2a1812a38 even better style xD
2015-05-18 16:36:47 +02:00

24 lines
610 B
Django/Jinja

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<link href="board/thread/static/styles.css" rel="stylesheet" type="text/css" />
<title>{{ title }}</title>
</head>
<body>
<ul>
<li><a href="users.html">Users</a></li>
</ul>
<hr>
<ul>
{% for board in boards %}
<li>
<a href={{ "board/" + board.title |url_replacer + ".html" }}>{{ board.title }}</a><br>
<i>{{ board.description }}</i>
</li>
{% endfor %}
</ul>
</body>
</html>