19 lines
479 B
Plaintext
19 lines
479 B
Plaintext
{% extends "../templates/basic.njk" %}
|
|
|
|
{% block head %}
|
|
<link rel="stylesheet" href="/assets/css/landing.css">
|
|
<title>DDStats - Welcome!</title>
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<main>
|
|
<header>
|
|
Welcome to DDStats!
|
|
</header>
|
|
|
|
<form action="/search" method="get">
|
|
<h1>Search for a player or map...</h1>
|
|
<input type="text" name="q" placeholder="Yumiko, Hitode, ...">
|
|
</form>
|
|
</main>
|
|
{% endblock %} |