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

22 lines
560 B
Plaintext
Raw 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="boards.html">Boards</a></li>
</ul>
<hr>
<ul>
{% for user in users %}
<li><a href={{ "user/" + user.name |url_replacer + ".html" }}>{{ user.name }}</a></li>
2015-05-12 14:47:18 +00:00
{% endfor %}
</ul>
</body>
</html>