Fix misc Lighthouse complaints
This commit is contained in:
parent
a7e0f817c9
commit
df41405251
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
|
@ -1,4 +1,5 @@
|
||||||
{
|
{
|
||||||
|
"start_url": "/",
|
||||||
"name": "Nitter",
|
"name": "Nitter",
|
||||||
"short_name": "Nitter",
|
"short_name": "Nitter",
|
||||||
"icons": [
|
"icons": [
|
||||||
|
@ -11,6 +12,11 @@
|
||||||
"src": "/android-chrome-384x384.png",
|
"src": "/android-chrome-384x384.png",
|
||||||
"sizes": "384x384",
|
"sizes": "384x384",
|
||||||
"type": "image/png"
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"theme_color": "#333333",
|
"theme_color": "#333333",
|
||||||
|
|
|
@ -20,7 +20,7 @@ proc renderNavbar*(title, rss: string; req: Request): VNode =
|
||||||
tdiv(class="nav-item"):
|
tdiv(class="nav-item"):
|
||||||
a(class="site-name", href="/"): text title
|
a(class="site-name", href="/"): text title
|
||||||
|
|
||||||
a(href="/"): img(class="site-logo", src="/logo.png")
|
a(href="/"): img(class="site-logo", src="/logo.png", alt="Logo")
|
||||||
|
|
||||||
tdiv(class="nav-item right"):
|
tdiv(class="nav-item right"):
|
||||||
icon "search", title="Search", href="/search"
|
icon "search", title="Search", href="/search"
|
||||||
|
@ -74,6 +74,7 @@ proc renderHead*(prefs: Prefs; cfg: Config; titleText=""; desc=""; video="";
|
||||||
text cfg.title
|
text cfg.title
|
||||||
|
|
||||||
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
||||||
|
meta(name="theme-color", content="#1F1F1F")
|
||||||
meta(property="og:type", content=ogType)
|
meta(property="og:type", content=ogType)
|
||||||
meta(property="og:title", content=(if ogTitle.len > 0: ogTitle else: titleText))
|
meta(property="og:title", content=(if ogTitle.len > 0: ogTitle else: titleText))
|
||||||
meta(property="og:description", content=stripHtml(desc))
|
meta(property="og:description", content=stripHtml(desc))
|
||||||
|
|
Loading…
Reference in New Issue