23 lines
467 B
HTML
23 lines
467 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<link rel="stylesheet" type="text/css" href="/static/style.css">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{{.Title}}</title>
|
|
</head>
|
|
<body>
|
|
<div class="cntrbox">
|
|
<h1>{{.Title}}</h1>
|
|
<p>
|
|
Will be able to manage. Or not.
|
|
</p>
|
|
<footer>
|
|
<hr>
|
|
<small>
|
|
2025 Jarkko Toivanen
|
|
</small>
|
|
</footer>
|
|
</div>
|
|
</body>
|
|
</html>
|