pub / yt2html

Fetches Youtube content via RSS and provides a chronological timeline
git clone https://src.jayvii.de/pub/yt2html.git
Home | Log | Files | Exports | Refs | README | RSS

commit b50fbbe405487a7aed733ee92cce641460022cfa
parent 5a0762720f111622ab848413d9defc4092df83b3
Author: JayVii <jayvii[AT]posteo[DOT]de>
Date:   Fri, 10 May 2024 18:40:30 +0200

Ensure icon is always shown on mobile

Diffstat:
Mmanifest.json | 7++++++-
Mtemplate.html | 2+-
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/manifest.json b/manifest.json @@ -5,7 +5,7 @@ "display":"standalone", "scope":"/", "background_color":"#000000", - "description":"Newest YOuTube videos of your subscriptions.", + "description":"Newest YouTube videos of your subscriptions.", "icons":[ { "src":"/assets/favicon_16.png", @@ -26,6 +26,11 @@ "src":"/assets/favicon_128.png", "sizes":"128x128", "type":"image/png" + }, + { + "src":"/assets/favicon.png", + "sizes":"256x256", + "type":"image/png" } ] } diff --git a/template.html b/template.html @@ -7,7 +7,7 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!-- Title may be filled in by script --> <title>%%TITLE%%</title> - <link rel="icon" href="/assets/favicon.ico"> + <link rel="icon" type="image/png" href="/assets/favicon.png"> <link rel="icon" type="image/png" sizes="16x16" href="/assets/favicon_16.png"> <link rel="icon" type="image/png" sizes="32x32" href="/assets/favicon_32.png"> <link rel="icon" type="image/png" sizes="64x64" href="/assets/favicon_64.png">