21 lines
623 B
HTML
21 lines
623 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>{{ title }}</title>
|
||
|
<link rel="stylesheet" href="/static/gruvbox.css">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<link rel="icon" type="image/png" href="/static/favicon.png"/>
|
||
|
<link rel="icon" href="/static/favicon.ico" type="image/x-icon"/>
|
||
|
</head>
|
||
|
<body id="top">
|
||
|
<main>
|
||
|
<nav class="nav">
|
||
|
<a href="/">Mi</a>
|
||
|
</nav>
|
||
|
<h1>{{ title }}</h1>
|
||
|
<p>{{ message }}</p>
|
||
|
<a href="/">Go home</a>
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|