16 lines
335 B
Plaintext
16 lines
335 B
Plaintext
|
{% extends "../templates/basic.njk" %}
|
||
|
|
||
|
{% block head %}
|
||
|
<title>DDStats - Welcome!</title>
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<header>
|
||
|
Welcome to DDStats!
|
||
|
</header>
|
||
|
|
||
|
<form action="/search" method="get">
|
||
|
<h1>Search for a player or map...</h1>
|
||
|
<input type="text" name="q">
|
||
|
</form>
|
||
|
{% endblock %}
|