Files
lair.moe/blueprints/root/templates/base.pug
T

37 lines
936 B
Plaintext
Raw Normal View History

2026-03-31 16:09:57 +03:00
doctype html
html(lang=g.locale)
head
title Lair
link(rel="stylesheet" href="/static/style/main.css")
2026-04-09 00:32:33 +03:00
link(rel="icon" type="image/webp" href="/static/img/lair.webp")
2026-03-31 16:09:57 +03:00
script(src="/static/script/copy-mono.js")
2026-04-09 04:34:07 +03:00
if request.headers.get('DNT') != "1":
script(
src="https://track.lair.moe/api/script.js"
data-site-id="1"
defer
)
2026-03-31 16:09:57 +03:00
meta(name="viewport" content="width=device-width, initial-scale=1.0")
meta(name="mock-email" content="admin@example.com")
meta(property="og:type" value="website")
meta(property="og:url" value="https://lair.moe")
meta(property="og:title" value="Lair.moe")
2026-04-09 00:32:33 +03:00
meta(property="og:image" value="https://lair.moe/static/img/lair.webp")
2026-03-31 16:09:57 +03:00
meta(property="og:description" value=_("description"))
body
include root/templates/header.pug
h1
block title
main
block content
include root/templates/footer.pug