Add favicons
|
@ -8,6 +8,7 @@
|
||||||
<style>[v-cloak] { display: none; }</style>
|
<style>[v-cloak] { display: none; }</style>
|
||||||
<script type="module" src="{{ '/js/script.js' | url }}"></script>
|
<script type="module" src="{{ '/js/script.js' | url }}"></script>
|
||||||
|
|
||||||
|
{% include 'favicons.njk' %}
|
||||||
<!-- TODO: REMOVE IN PROD, but safer to have it for now -->
|
<!-- TODO: REMOVE IN PROD, but safer to have it for now -->
|
||||||
<meta name="robots" content="none">
|
<meta name="robots" content="none">
|
||||||
</head>
|
</head>
|
||||||
|
|
9
src/_includes/favicons.njk
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicons/favicon-32x32.png">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicons/favicon-16x16.png">
|
||||||
|
<link rel="manifest" href="/site.webmanifest">
|
||||||
|
<link rel="mask-icon" href="/favicons/safari-pinned-tab.svg" color="#321d64">
|
||||||
|
<link rel="shortcut icon" href="/favicon.ico">
|
||||||
|
<meta name="msapplication-TileColor" content="#d70878">
|
||||||
|
<meta name="msapplication-config" content="/browserconfig.xml">
|
||||||
|
<meta name="theme-color" content="#321d64">
|
BIN
static/apple-touch-icon.png
Normal file
After Width: | Height: | Size: 955 B |
9
static/browserconfig.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<browserconfig>
|
||||||
|
<msapplication>
|
||||||
|
<tile>
|
||||||
|
<square150x150logo src="/favicons/mstile-150x150.png"/>
|
||||||
|
<TileColor>#d70878</TileColor>
|
||||||
|
</tile>
|
||||||
|
</msapplication>
|
||||||
|
</browserconfig>
|
BIN
static/favicon.ico
Normal file
After Width: | Height: | Size: 15 KiB |
BIN
static/favicons/android-chrome-192x192.png
Normal file
After Width: | Height: | Size: 1,005 B |
BIN
static/favicons/android-chrome-512x512.png
Normal file
After Width: | Height: | Size: 2 KiB |
BIN
static/favicons/favicon-16x16.png
Normal file
After Width: | Height: | Size: 763 B |
BIN
static/favicons/favicon-32x32.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
static/favicons/mstile-144x144.png
Normal file
After Width: | Height: | Size: 792 B |
BIN
static/favicons/mstile-150x150.png
Normal file
After Width: | Height: | Size: 970 B |
BIN
static/favicons/mstile-310x150.png
Normal file
After Width: | Height: | Size: 1.2 KiB |
BIN
static/favicons/mstile-310x310.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
static/favicons/mstile-70x70.png
Normal file
After Width: | Height: | Size: 759 B |
1
static/favicons/safari-pinned-tab.svg
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" width="933.3" height="933.3" version="1.0" viewBox="0 0 700 700"><path d="M0 350v350h700V0H0v350zm547 0v153h-82V388.5c0-70-.4-114.5-.9-114.5s-15.3 8.6-32.8 19.1a1851 1851 0 0 1-33 19.6c-1 .4-1.3-6.9-1.3-34.4v-35l37.3-23.1 37.2-23.1 37.8-.1H547v153zm-282-71v39h77v66h-77v78h-67v-78h-77v-66h77v-78h67v39z"/></svg>
|
After Width: | Height: | Size: 352 B |
18
static/site.webmanifest
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
{
|
||||||
|
"name": "Compteur de Grève",
|
||||||
|
"short_name": "#CompteurDeGr\u00e8ve",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/favicons/android-chrome-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/favicons/android-chrome-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#321d64",
|
||||||
|
"background_color": "#321d64"
|
||||||
|
}
|