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

20 lines
518 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">
<link href="styles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<ul>
<li><a href="boards.html">Boards</a></li>
</ul>
<hr>
<ul>
{% for user in users %}
<li><a href={{ "user/" + user.name.replace('/', '_').replace(' ', '_').replace('?', '') + ".html" }}>{{ user.name }}</a></li>
{% endfor %}
</ul>
</body>
</html>