mirror of
https://git.sr.ht/~cadence/bibliogram
synced 2025-12-16 11:08:49 +00:00
Upload favicons
This commit is contained in:
@@ -7,10 +7,8 @@ include includes/error.pug
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
meta(charset="utf-8")
|
||||
meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
title= `Blocked | Bibliogram`
|
||||
link(rel="stylesheet" type="text/css" href="/static/css/main.css")
|
||||
include includes/head
|
||||
body.error-page
|
||||
+error(503, "Blocked by Instagram", true)
|
||||
| Instagram is refusing to provide data to this server. Try again later to see if the block has been lifted.
|
||||
|
||||
@@ -7,10 +7,8 @@ include includes/error.pug
|
||||
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")
|
||||
include includes/head
|
||||
body.error-page
|
||||
+error(statusCode, message, withInstancesLink)
|
||||
if explanation
|
||||
|
||||
@@ -3,10 +3,8 @@
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
meta(charset="utf-8")
|
||||
meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
title Bibliogram
|
||||
link(rel="stylesheet" type="text/css" href="/static/css/main.css")
|
||||
include includes/head
|
||||
body.homepage
|
||||
header
|
||||
h1.banner
|
||||
|
||||
10
src/site/pug/includes/head.pug
Normal file
10
src/site/pug/includes/head.pug
Normal file
@@ -0,0 +1,10 @@
|
||||
meta(charset="utf-8")
|
||||
link(rel="stylesheet" type="text/css" href="/static/css/main.css")
|
||||
meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
link(rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png")
|
||||
link(rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png")
|
||||
link(rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png")
|
||||
link(rel="manifest" href="/site.webmanifest")
|
||||
link(rel="mask-icon" href="/safari-pinned-tab.svg" color="#303030")
|
||||
meta(name="msapplication-TileColor" content="#00aba9")
|
||||
meta(name="theme-color" content="#ffffff")
|
||||
@@ -5,16 +5,13 @@ include includes/display_structured
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
meta(charset="utf-8")
|
||||
meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
title
|
||||
if post.getCaptionIntroduction()
|
||||
=post.getCaptionIntroduction()
|
||||
else
|
||||
=`Post from @${post.getBasicOwner().username}`
|
||||
=` | Bibliogram`
|
||||
link(rel="stylesheet" type="text/css" href="/static/css/main.css")
|
||||
script(src="/static/js/pagination.js" type="module")
|
||||
include includes/head
|
||||
body.post-page
|
||||
main.post-page-divider
|
||||
section.description-section
|
||||
|
||||
@@ -9,13 +9,11 @@ include includes/display_structured
|
||||
doctype html
|
||||
html
|
||||
head
|
||||
meta(charset="utf-8")
|
||||
meta(name="viewport" content="width=device-width, initial-scale=1")
|
||||
if user.data.full_name
|
||||
title= `${user.data.full_name} (@${user.data.username}) | Bibliogram`
|
||||
else
|
||||
title= `@${user.data.username} | Bibliogram`
|
||||
link(rel="stylesheet" type="text/css" href="/static/css/main.css")
|
||||
include includes/head
|
||||
script(src="/static/js/pagination.js" type="module")
|
||||
body
|
||||
.main-divider
|
||||
|
||||
Reference in New Issue
Block a user