2020-03-08 17:13:14 +00:00
|
|
|
mixin nav-item(url, name)
|
2024-02-25 22:18:34 +00:00
|
|
|
a(href=url)= name + " "
|
2020-03-08 17:13:14 +00:00
|
|
|
|
2023-11-19 21:06:25 +00:00
|
|
|
mixin image(src)
|
|
|
|
if typeof src === "string"
|
|
|
|
img(src=src)
|
|
|
|
else
|
|
|
|
picture
|
2024-03-28 00:48:30 +00:00
|
|
|
each pair in src
|
|
|
|
if pair[0] == "_fallback"
|
|
|
|
img(src=pair[1])
|
2023-11-19 21:06:25 +00:00
|
|
|
else
|
2024-03-28 00:48:30 +00:00
|
|
|
source(srcset=pair[1], type=pair[0])
|
2023-11-19 21:06:25 +00:00
|
|
|
|
2020-03-08 17:13:14 +00:00
|
|
|
doctype html
|
|
|
|
html(lang="en")
|
|
|
|
head
|
2023-11-19 21:06:25 +00:00
|
|
|
link(rel="preload", href="/assets/share-tech-mono.woff2", as="font", crossorigin="anonymous")
|
|
|
|
link(rel="preload", href="/assets/titillium-web-semibold.woff2", as="font", crossorigin="anonymous")
|
|
|
|
link(rel="preload", href="/assets/titillium-web.woff2", as="font", crossorigin="anonymous")
|
2020-03-08 17:13:14 +00:00
|
|
|
title= `${title} @ ${name}`
|
|
|
|
script(src="/assets/js/page.js", defer=true)
|
|
|
|
meta(charset="UTF-8")
|
|
|
|
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
|
|
|
if description
|
|
|
|
meta(name="description", content=description)
|
|
|
|
link(rel="manifest", href="/assets/manifest.webmanifest")
|
2022-03-09 20:59:26 +00:00
|
|
|
link(rel="shortcut icon", href="/assets/images/logo256.png", type="image/png")
|
2023-03-18 15:33:06 +00:00
|
|
|
meta(content=`https://${domain}/assets/images/logo256.png`, property="og:image")
|
2020-06-20 16:23:59 +00:00
|
|
|
style!= css
|
2020-03-08 17:13:14 +00:00
|
|
|
if comments !== "off"
|
2024-03-22 11:39:39 +00:00
|
|
|
script(src=`https://${domain}/rsapi/static/comments.js`, async=true)
|
2020-03-08 17:13:14 +00:00
|
|
|
body
|
2024-01-02 02:23:11 +00:00
|
|
|
.nav-container
|
|
|
|
nav
|
|
|
|
a.logocont(href="/")
|
|
|
|
img.logo(src="/assets/images/logo256.png", alt="osmarks.net logo")
|
|
|
|
.logotext osmarks
|
|
|
|
+nav-item(`https://mse.${domain}/`, "Meme Search")
|
|
|
|
+nav-item(`https://i.${domain}/`, "Images")
|
|
|
|
+nav-item("https://github.com/osmarks/website", "Contribute")
|
|
|
|
+nav-item(`https://b.${domain}`, "Microblog")
|
|
|
|
+nav-item(`https://status.${domain}`, "Status")
|
|
|
|
+nav-item(`https://r.${domain}/login`, "Login")
|
|
|
|
block nav-items
|
|
|
|
.sidenotes-container
|
|
|
|
main(class=!haveSidenotes ? "fullwidth" : "")
|
|
|
|
.header
|
|
|
|
h1.page-title= title
|
|
|
|
block under-title
|
|
|
|
h3.deemph
|
|
|
|
if updated
|
|
|
|
span= `Updated ${renderDate(updated)}`
|
|
|
|
if created || wordCount
|
|
|
|
span= " / "
|
|
|
|
if created
|
|
|
|
span= `Created ${renderDate(created)}`
|
|
|
|
if wordCount
|
|
|
|
span= " / "
|
|
|
|
if wordCount
|
|
|
|
span= `${metricPrefix(wordCount, "")} words`
|
|
|
|
if description
|
|
|
|
em.description!= description
|
|
|
|
block content
|
2020-03-08 17:13:14 +00:00
|
|
|
|
2024-01-02 02:23:11 +00:00
|
|
|
if haveSidenotes
|
|
|
|
.sidenotes
|
2024-02-26 19:20:31 +00:00
|
|
|
|
|
|
|
if comments !== "off"
|
|
|
|
main(class=!haveSidenotes ? "fullwidth isso" : "isso")
|
2024-03-22 11:39:39 +00:00
|
|
|
section(id="comments-wrapper")
|