47 lines
912 B
HTML
47 lines
912 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{{ .Title }}</title>
|
|
{{ if .Description }}<meta name="description" content="{{ .Description }}">{{ end }}
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
<nav>
|
|
<ul>
|
|
{{ range .Nav }}
|
|
<li><a href="{{ .URL }}">{{ .Title }}</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main>
|
|
{{ if .Date }}<small>Published: {{ .Date }}</small>{{ end }}
|
|
{{ .Content }}
|
|
|
|
{{ if .Posts }}
|
|
<section>
|
|
<h2>Blog Posts</h2>
|
|
<ul>
|
|
{{ range .Posts }}
|
|
<li>
|
|
<a href="/blog/{{ .Slug }}/">{{ .Title }}</a>
|
|
{{ if .Date }} <small>{{ .Date }}</small>{{ end }}<br>
|
|
{{ .Description }}
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|
|
</main>
|
|
|
|
<footer>
|
|
<p>© {{ .Year }} Keith Solomon</p>
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|