25 lines
648 B
HTML
25 lines
648 B
HTML
<!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>
|
|
<link rel="alternate" type="application/rss+xml" title="RSS Feed" href="{{ url_abs "/feed.xml" }}"/>
|
|
<link rel="alternate" type="application/json" title="JSON feed" href="{{ url_abs "/feed.json" }}"/>
|
|
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.min.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>{{ .Site.Title }}</h1>
|
|
<p>{{ .Site.Tagline }}</p>
|
|
</header>
|
|
|
|
<main>
|
|
{{ .Body }}
|
|
</main>
|
|
|
|
<footer>
|
|
<p>This site under construction.</p>
|
|
</footer>
|
|
</body>
|
|
</html> |