nyxask/app/templates/index.j2

26 lines
731 B
Django/Jinja

{% from 'header.j2' import header_home %}
{% from 'imports.j2' import imports_main %}
<html lang=en>
<head>
<title>{{ instanceBranding }} - Home</title>
{{ imports_main() }}
</head>
<body>
{{ header_home() }}
<div style="text-align:center">
<h1>
Hi from {{ instanceLocation }}'s Nyxask!
</h1>
<label for="name">Name (optional):</label>
<input
type="text"
id="name"
name="name"
size="10" />
<br>
<br>
<label for="question">Question:</label>
<textarea id="question" name="question"></textarea>
</div>
</body>
</html>