christmas/views/layout.pug

31 lines
1,011 B
Text
Raw Normal View History

2018-11-20 11:19:58 -08:00
doctype html
html(lang='en')
head
meta(name='viewport', content='width=device-width, initial-scale=1')
if title
title #{config.siteTitle} - #{title}
else
title #{config.siteTitle}
2018-11-26 13:18:28 -08:00
if config.useCDN
link(rel='stylesheet', href='https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.min.css')
2018-11-20 11:19:58 -08:00
link(
rel='stylesheet',
2018-11-26 13:28:02 -08:00
href='https://use.fontawesome.com/releases/v5.5.0/css/all.css',
2018-11-20 11:19:58 -08:00
crossorigin='anonymous'
)
2018-11-26 13:18:28 -08:00
else
2018-11-26 13:28:02 -08:00
link(rel='stylesheet', href='/libraries/bulma.min.css')
link(rel='stylesheet', href='/libraries/fontawesome/css/all.css')
2018-11-26 13:18:28 -08:00
link(rel='stylesheet', href='/css/main.css')
2018-11-20 11:19:58 -08:00
body
include includes/navbar.pug
div.content#pageContent
section.section
2018-11-23 14:29:40 -08:00
div.container.is-marginless.fullwidth
2018-11-20 11:19:58 -08:00
if title
h1= config.siteTitle + ' - ' + title
else if title !== false
h1 #{config.siteTitle}
include includes/messages.pug
block content