proboards-website-generator/templates/boards.html.j2

25 lines
669 B
Plaintext
Raw Permalink Normal View History

2015-05-12 14:47:18 +00:00
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
2017-01-05 14:55:20 +00:00
<link href="/styles.css" rel="stylesheet" type="text/css" />
2015-05-12 18:18:31 +00:00
<title>{{ title }}</title>
2015-05-12 14:47:18 +00:00
</head>
<body>
<ul>
2015-05-18 15:55:38 +00:00
<li><a href="index.html">Home</a></li>
2015-05-12 14:47:18 +00:00
<li><a href="users.html">Users</a></li>
</ul>
<hr>
<ul>
{% for board in boards %}
<li>
2015-05-18 15:55:38 +00:00
<a href={{ "board/" + board |find_board_id + '_' + board.title |url_replacer + ".html" }}>{{ board.title }}</a><br>
2015-05-12 14:47:18 +00:00
<i>{{ board.description }}</i>
</li>
{% endfor %}
</ul>
</body>
</html>