summaryrefslogtreecommitdiff
path: root/layouts/articles/single.html
blob: 7df87e4a317f1c0470210f8e3e62e7eb193bb2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>

<!--
	vim: shiftwidth=4 tabstop=4 noexpandtab
-->

<html>
	
	<head>

		<title>xengineering</title>

		<meta charset="utf-8"/>
		<meta name="viewport" content="width=device-width, initial-scale=1.0">
		<link rel="stylesheet" href="{{ "style.css" | absURL }}" type="text/css">

	</head>
	
	<body>

		<header>
			<nav>
				<a href="{{ "/" | absURL }}">Home</a>
			<nav>
				<h1>{{ .Params.Title }}</h1>
				<p>{{ .Params.Subtitle }}</p>
		</header>

		<main>
			<details>
				<summary>Table of contents</summary>
				{{ .TableOfContents }}
			</details>
			{{ .Content }}
			{{ partial "footer.html" . }}
		</main>

	</body>

</html>