34 lines
884 B
Plaintext
34 lines
884 B
Plaintext
|
|
doctype html
|
||
|
|
html(lang=g.locale)
|
||
|
|
head
|
||
|
|
title Lair
|
||
|
|
|
||
|
|
link(rel="stylesheet" href="/static/style/main.css")
|
||
|
|
link(rel="icon" type="image/webp" href="/static/icon/lair.webp")
|
||
|
|
|
||
|
|
script(src="/static/script/copy-mono.js")
|
||
|
|
script(
|
||
|
|
src="https://track.lair.moe/api/script.js"
|
||
|
|
data-site-id="1"
|
||
|
|
defer
|
||
|
|
)
|
||
|
|
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")
|
||
|
|
meta(property="og:image" value="https://lair.moe/static/icon/lair.webp")
|
||
|
|
meta(property="og:description" value=_("description"))
|
||
|
|
|
||
|
|
body
|
||
|
|
include root/templates/header.pug
|
||
|
|
|
||
|
|
h1
|
||
|
|
block title
|
||
|
|
|
||
|
|
main
|
||
|
|
block content
|
||
|
|
|
||
|
|
include root/templates/footer.pug
|