mirror of
https://git.sr.ht/~cadence/cloudtube
synced 2026-03-02 02:31:35 +00:00
Add favicon and PWA manifest
This commit is contained in:
parent
61c8e205d8
commit
17185c6b5e
11 changed files with 74 additions and 0 deletions
|
|
@ -6,6 +6,18 @@ html
|
|||
- const theme = settings && ["dark", "light", "edgeless-light"][settings.theme] || "dark"
|
||||
link(rel="stylesheet" type="text/css" href=getStaticURL("sass", `/${theme}.sass`))
|
||||
script(type="module" src=getStaticURL("html", "/static/js/focus.js"))
|
||||
link(rel="apple-touch-icon" sizes="180x180" href="/static/images/apple-touch-icon.png")
|
||||
link(rel="icon" type="image/png" sizes="32x32" href="/static/images/favicon-32x32.png")
|
||||
link(rel="icon" type="image/png" sizes="16x16" href="/static/images/favicon-16x16.png")
|
||||
link(rel="manifest" href="/site.webmanifest")
|
||||
link(rel="mask-icon" href="/static/images/safari-pinned-tab.svg" color="#5bbad5")
|
||||
link(rel="shortcut icon" href="/static/images/favicon.ico")
|
||||
meta(name="apple-mobile-web-app-title" content="CloudTube")
|
||||
meta(name="application-name" content="CloudTube")
|
||||
meta(name="msapplication-TileColor" content="#2b5797")
|
||||
meta(name="msapplication-config" content="/browserconfig.xml")
|
||||
meta(name="theme-color" content="#36393f")
|
||||
|
||||
block head
|
||||
|
||||
body.show-focus
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue