yWeb: move favicons to own directory
Origin commit data
------------------
Branch: ni/coolstream
Commit: abfd37e8c2
Author: vanhofen <vanhofen@gmx.de>
Date: 2022-01-28 (Fri, 28 Jan 2022)
Origin message was:
------------------
- yWeb: move favicons to own directory
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
@@ -1,7 +1,7 @@
|
||||
SUBDIRS = images scripts languages styles
|
||||
|
||||
# NI-yWeb
|
||||
SUBDIRS += info jquery
|
||||
SUBDIRS += favicon info jquery
|
||||
|
||||
installdir = $(PRIVATE_HTTPDDIR)
|
||||
|
||||
|
12
data/y-web/favicon/Makefile.am
Normal file
@@ -0,0 +1,12 @@
|
||||
installdir = $(PRIVATE_HTTPDDIR)/favicon
|
||||
|
||||
install_DATA = \
|
||||
android-chrome-192x192.png \
|
||||
android-chrome-512x512.png \
|
||||
apple-touch-icon.png \
|
||||
browserconfig.xml \
|
||||
favicon-16x16.png \
|
||||
favicon-32x32.png \
|
||||
favicon.ico \
|
||||
mstile-150x150.png \
|
||||
safari-pinned-tab.svg
|
Before Width: | Height: | Size: 8.6 KiB After Width: | Height: | Size: 8.6 KiB |
Before Width: | Height: | Size: 26 KiB After Width: | Height: | Size: 26 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
@@ -2,7 +2,7 @@
|
||||
<browserconfig>
|
||||
<msapplication>
|
||||
<tile>
|
||||
<square150x150logo src="/mstile-150x150.png"/>
|
||||
<square150x150logo src="/favicon/mstile-150x150.png"/>
|
||||
<TileColor>#212121</TileColor>
|
||||
</tile>
|
||||
</msapplication>
|
Before Width: | Height: | Size: 855 B After Width: | Height: | Size: 855 B |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 5.2 KiB After Width: | Height: | Size: 5.2 KiB |
@@ -2,16 +2,5 @@ installdir = $(PRIVATE_HTTPDDIR)/info
|
||||
|
||||
install_DATA = \
|
||||
index.html \
|
||||
yinfo.yhtm
|
||||
|
||||
install_DATA += \
|
||||
android-chrome-192x192.png \
|
||||
android-chrome-512x512.png \
|
||||
apple-touch-icon.png \
|
||||
browserconfig.xml \
|
||||
favicon-16x16.png \
|
||||
favicon-32x32.png \
|
||||
favicon.ico \
|
||||
manifest.json \
|
||||
mstile-150x150.png \
|
||||
safari-pinned-tab.svg
|
||||
yinfo.yhtm
|
||||
|
@@ -2,12 +2,12 @@
|
||||
"name": "NI - yInfo",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/android-chrome-192x192.png",
|
||||
"src": "/favicon/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/android-chrome-512x512.png",
|
||||
"src": "/favicon/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
@@ -15,4 +15,4 @@
|
||||
"theme_color": "#212121",
|
||||
"background_color": "#212121",
|
||||
"display": "standalone"
|
||||
}
|
||||
}
|
||||
|
@@ -19,11 +19,11 @@
|
||||
{=include-block:Y_NI_Blocks.txt;head=}
|
||||
<meta http-equiv="refresh" content="15; URL=yinfo.yhtm">
|
||||
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/info/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" href="/info/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/info/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="manifest" href="/info/manifest.json">
|
||||
<link rel="mask-icon" href="/info/safari-pinned-tab.svg" color="#212121">
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
|
||||
<link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16">
|
||||
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#212121">
|
||||
<link rel="manifest" href="/favicon/manifest.json">
|
||||
<meta name="theme-color" content="#212121">
|
||||
|
||||
<script type="text/javascript">
|
||||
|