summaryrefslogtreecommitdiffhomepage
path: root/resources/pug/include/layout.pug
blob: 81f133dc8df33f4f2f581ef6d1d960fe4bdd2325 (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
28
29
30
31
32
33
34
35
include /mixins.pug

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

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

			block content

			- var date = new Date()
			hr
			footer.footer
				p.text-center
					| Copyright © Camil Staps 2015–#{date.getFullYear()}  •  
					= "Last updated " + date.toDateString()
				p.text-center.greyed-out
					| This page uses the 
					a(href='https://www.sbl-site.org/educational/biblicalfonts.aspx', target='_blank') SBL Hebrew font
					| , 
					a(href='https://fontawesome.com', target='_blank') Font Awesome
					| , and 
					a(href='https://jpswalsh.github.io/academicons/', target='_blank') Academicons
					| .

		include foot.pug

		block js