mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2024-11-16 21:27:30 +00:00
19 lines
503 B
Plaintext
19 lines
503 B
Plaintext
|
//- 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
|
||
|
a(href="javascript:history.back()").back ← Go back?
|