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

38 lines
778 B
Plaintext
Raw Normal View History

2015-05-12 14:47:18 +00:00
<!doctype html>
<html>
2015-05-18 14:09:11 +00:00
<head>
2015-05-12 14:47:18 +00:00
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
2015-05-18 14:09:11 +00:00
<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>
2015-05-12 18:18:31 +00:00
<title>{{ title }}</title>
2015-05-18 14:09:11 +00:00
</head>
<body>
<h1>{{ user.name }}</h1>
<h3>{{ user.status }}</h3>
<p>
{% if user.registered %} registered {{ user.registered | fromunixtime }} {% else %} unregistered {% endif %}
</p>
{% if user.signature %}
<hr>
<i>{{ user.signature | tohtml }}</i> {% endif %}
</body>
2015-05-12 14:47:18 +00:00
</html>