Add favicons
This commit is contained in:
parent
38b644f3fa
commit
c722dec457
9 changed files with 32 additions and 0 deletions
|
@ -7,6 +7,7 @@ RUN find . -name "*.scss" -type f | xargs -I % sh -c 'sassc % > ../dist/$(basena
|
|||
|
||||
FROM tdewolff/minify:latest as static
|
||||
WORKDIR /usr/src/static
|
||||
COPY ./static .
|
||||
COPY --from=css /usr/src/scss/dist ./css
|
||||
COPY ./js ./js
|
||||
RUN minify . -r -o .
|
||||
|
|
BIN
bvplan/static/android-chrome-512x512.png
Normal file
BIN
bvplan/static/android-chrome-512x512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 56 KiB |
BIN
bvplan/static/apple-touch-icon.png
Normal file
BIN
bvplan/static/apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 18 KiB |
BIN
bvplan/static/favicon-16x16.png
Normal file
BIN
bvplan/static/favicon-16x16.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 687 B |
BIN
bvplan/static/favicon-32x32.png
Normal file
BIN
bvplan/static/favicon-32x32.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.7 KiB |
BIN
bvplan/static/favicon.ico
Normal file
BIN
bvplan/static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
19
bvplan/static/site.webmanifest
Normal file
19
bvplan/static/site.webmanifest
Normal file
|
@ -0,0 +1,19 @@
|
|||
{
|
||||
"name": "BVplan",
|
||||
"short_name": "BVplan",
|
||||
"icons": [
|
||||
{
|
||||
"src": "/static/android-chrome-192x192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
},
|
||||
{
|
||||
"src": "/static/android-chrome-512x512.png",
|
||||
"sizes": "512x512",
|
||||
"type": "image/png"
|
||||
}
|
||||
],
|
||||
"theme_color": "#ffffff",
|
||||
"background_color": "#ffffff",
|
||||
"display": "standalone"
|
||||
}
|
|
@ -7,6 +7,12 @@
|
|||
<meta name="generator" content="BVplan" />
|
||||
<title>BVplan | dergrimm.net</title>
|
||||
|
||||
<link rel="shortcut icon" href="/static/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
|
||||
<link rel="manifest" href="/static/site.webmanifest">
|
||||
|
||||
<link rel="stylesheet" type="text/css" href="/static/css/bvplan.css" />
|
||||
|
||||
<script id="data-element-count" type="application/json">{{ data.substitutions.len()|json|safe }}</script>
|
||||
|
|
|
@ -7,6 +7,12 @@
|
|||
<meta name="generator" content="BVplan" />
|
||||
<title>BVplan | dergrimm.net</title>
|
||||
|
||||
<link rel="shortcut icon" href="/static/favicon.ico" />
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/static/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicon-16x16.png">
|
||||
<link rel="manifest" href="/static/site.webmanifest">
|
||||
|
||||
<style>
|
||||
body {
|
||||
text-align: center;
|
||||
|
|
Loading…
Reference in a new issue