27 lines
726 B
Plaintext
27 lines
726 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" type="text/css" href="/static/nebulosa.css">
|
|
<link rel="stylesheet" type="text/css" href="/static/ddguesser.css">
|
|
{% block head %}
|
|
<title>DDGuesser</title>
|
|
{% endblock head %}
|
|
</head>
|
|
|
|
<body class="ddguesser">
|
|
<nav>
|
|
<a class="btn primary textonly" href="/">DDGuesser</a>
|
|
<a class="btn primary textonly" href="/about">About</a>
|
|
<a class="btn primary textonly" href="/help">Help</a>
|
|
</nav>
|
|
<main>
|
|
{% block main %}
|
|
<p>Hello world!</p>
|
|
{% endblock main %}
|
|
</main>
|
|
</body>
|
|
|
|
</html> |