summaryrefslogblamecommitdiffhomepage
path: root/resources/pug/include/layout.pug
blob: 1cbf0f48f6f8c59ca7a757984d7c38e2cd430011 (plain) (tree)
1
2
3
4
5
6
7
8
9
                   
               
            
                                
 
            
                          
                                            



                                                                             
 
                                     
 
                                               
                          
                                     
                                             
                                                                                                                           
                                                                               
                                                        





                                                                                                                                          
 
                                
 
                        
include /mixins.pug

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

	body
		.container
			block titleContainer
				header
					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