bibliogram/src/site/pug/friendlyerror.pug

21 lines
550 B
Plaintext
Raw Normal View History

2020-01-27 06:03:28 +00:00
//- Needs title, message, statusCode
include includes/timeline_page.pug
include includes/next_page_button.pug
- const numberFormat = new Intl.NumberFormat().format
doctype html
html
head
meta(charset="utf-8")
meta(name="viewport" content="width=device-width, initial-scale=1")
title= `${title} | Bibliogram`
link(rel="stylesheet" type="text/css" href="/static/css/main.css")
body.error-page
h1.code= statusCode
p.message= message
2020-01-28 12:17:32 +00:00
if explanation
p.explanation= explanation
2020-01-27 06:03:28 +00:00
a(href="javascript:history.back()").back ← Go back?