summaryrefslogtreecommitdiffhomepage
path: root/resources/pug/include/layout.pug
blob: 6a8953367bbe5ae4d7d2f3b1e4058f8929a45ada (plain) (blame)
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
include /mixins.pug

doctype html
html(lang="en")
	head
		include head.pug

	body
		.container
			h1
				block titleContainer
					block title
						| Camil Staps
			hr

			block content

			- var date = new Date()
			footer.footer
				hr
				p.text-center
					| Copyright © Camil Staps #{date.getFullYear()}  •  
					= "Last updated " + date.toDateString()

		include foot.pug

		block js