first commit
This commit is contained in:
commit
3d986c4ee2
27 changed files with 597 additions and 0 deletions
5
views/index.pug
Normal file
5
views/index.pug
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
include partials/header.pug
|
||||
|
||||
h1 #{.Title}
|
||||
|
||||
include partials/footer.pug
|
||||
15
views/layouts/main.pug
Normal file
15
views/layouts/main.pug
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
doctype html
|
||||
html
|
||||
head
|
||||
if .PageTitle
|
||||
title #{.PageTitle} - People - POP Vaud
|
||||
else
|
||||
title People - POP Vaud
|
||||
|
||||
link(rel="icon", href="/static/images/favicon.jpg")
|
||||
link(rel="stylesheet", href="/static/bootstrap/css/bootstrap.min.css")
|
||||
link(rel="stylesheet", href="/static/main.css")
|
||||
body
|
||||
| {{embed}}
|
||||
|
||||
script(src="/static/bootstrap/js/bootstrap.bundle.min.js")
|
||||
1
views/partials/footer.pug
Normal file
1
views/partials/footer.pug
Normal file
|
|
@ -0,0 +1 @@
|
|||
h2 Footer
|
||||
2
views/partials/header.pug
Normal file
2
views/partials/header.pug
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
img#header-logo(src="/static/images/logo.jpg", alt="Logo")
|
||||
h2 Header
|
||||
Loading…
Add table
Add a link
Reference in a new issue