weiro/site_templates/layout_main.html

23 lines
443 B
HTML
Raw Normal View History

2026-02-18 11:07:18 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Site.Title }}</title>
2026-02-18 11:07:18 +00:00
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
</head>
<body>
<header>
<h1>{{ .Site.Title }}</h1>
<p>{{ .Site.Tagline }}</p>
2026-02-18 11:07:18 +00:00
</header>
<main>
{{ .Body }}
</main>
2026-02-18 11:07:18 +00:00
<footer>
<p>This site under construction.</p>
2026-02-18 11:07:18 +00:00
</footer>
</body>
</html>