Add favicons/touch icons
This commit is contained in:
parent
cfdc2563c2
commit
402e61f645
8 changed files with 32 additions and 0 deletions
BIN
static/img/apple-touch-icon.png
Normal file
BIN
static/img/apple-touch-icon.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.1 KiB |
BIN
static/img/favicon-96x96.png
Normal file
BIN
static/img/favicon-96x96.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
BIN
static/img/favicon.ico
Normal file
BIN
static/img/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
3
static/img/favicon.svg
Normal file
3
static/img/favicon.svg
Normal file
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 5.5 KiB |
BIN
static/img/web-app-manifest-192x192.png
Normal file
BIN
static/img/web-app-manifest-192x192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 6.5 KiB |
BIN
static/img/web-app-manifest-512x512.png
Normal file
BIN
static/img/web-app-manifest-512x512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 22 KiB |
21
static/site.webmanifest
Normal file
21
static/site.webmanifest
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
{
|
||||||
|
"name": "Avery Winters",
|
||||||
|
"short_name": "Avery Winters",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/img/web-app-manifest-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/img/web-app-manifest-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#1d1e28",
|
||||||
|
"background_color": "#1d1e28",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
|
@ -1,6 +1,14 @@
|
||||||
{% extends "zerm/templates/index.html" %}
|
{% extends "zerm/templates/index.html" %}
|
||||||
{%- block general_meta -%}
|
{%- block general_meta -%}
|
||||||
{{ head::general_meta() }}
|
{{ head::general_meta() }}
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="/img/favicon-96x96.png" sizes="96x96" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/img/favicon.svg" />
|
||||||
|
<link rel="shortcut icon" href="/img/favicon.ico" />
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="/img/apple-touch-icon.png" />
|
||||||
|
<meta name="apple-mobile-web-app-title" content="Avery Winters" />
|
||||||
|
<link rel="manifest" href="/site.webmanifest" />
|
||||||
|
|
||||||
<link href="https://floss.social/@averywinters" rel="me">
|
<link href="https://floss.social/@averywinters" rel="me">
|
||||||
<link rel="blogroll" type="text/xml" href="/blogroll.xml">
|
<link rel="blogroll" type="text/xml" href="/blogroll.xml">
|
||||||
<link rel="podroll" type="text/xml" href="/podroll.xml">
|
<link rel="podroll" type="text/xml" href="/podroll.xml">
|
||||||
|
|
Loading…
Reference in a new issue