34 lines
588 B
Plaintext
34 lines
588 B
Plaintext
|
extends base.pug
|
||
|
|
||
|
block head
|
||
|
style(type="text/css").
|
||
|
#error {
|
||
|
font-size: 3.5rem;
|
||
|
line-height: 5rem;
|
||
|
text-align: center;
|
||
|
margin: 6rem 0; }
|
||
|
|
||
|
#error h1 { font-size: 8rem; }
|
||
|
|
||
|
#description p { text-align: center; }
|
||
|
|
||
|
#description p:first-child { font-size: 1.4rem; }
|
||
|
|
||
|
block nav
|
||
|
nav
|
||
|
a(href='/') Home
|
||
|
a(href='/stuff') Stuff
|
||
|
a(href='/mindflow') Mindflow
|
||
|
a(href='/about') About
|
||
|
a(href='/guestbook') Guestbook
|
||
|
h1 Whoa whoa, watcha tryin'?
|
||
|
|
||
|
block content
|
||
|
section#error
|
||
|
h1 403
|
||
|
| Forbidden
|
||
|
|
||
|
if (error)
|
||
|
section#description
|
||
|
p= error.error
|
||
|
p= error.message
|