feat: favicon, webmanifest
BIN
src/epub2go_web/static/book_480.png
Normal file
|
After Width: | Height: | Size: 33 KiB |
BIN
src/epub2go_web/static/favicon/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
src/epub2go_web/static/favicon/favicon-96x96.png
Normal file
|
After Width: | Height: | Size: 3.2 KiB |
BIN
src/epub2go_web/static/favicon/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
3
src/epub2go_web/static/favicon/favicon.svg
Normal file
|
After Width: | Height: | Size: 44 KiB |
BIN
src/epub2go_web/static/favicon/web-app-manifest-192x192.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
src/epub2go_web/static/favicon/web-app-manifest-512x512.png
Normal file
|
After Width: | Height: | Size: 52 KiB |
21
src/epub2go_web/static/site.webmanifest
Normal file
@@ -0,0 +1,21 @@
|
|||||||
|
{
|
||||||
|
"name": "epub2go Converter",
|
||||||
|
"short_name": "epub2go",
|
||||||
|
"icons": [
|
||||||
|
{
|
||||||
|
"src": "/static/favicon/web-app-manifest-192x192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "/static/favicon/web-app-manifest-512x512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png",
|
||||||
|
"purpose": "maskable"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"theme_color": "#ffffff",
|
||||||
|
"background_color": "#ffffff",
|
||||||
|
"display": "standalone"
|
||||||
|
}
|
||||||
@@ -6,6 +6,14 @@
|
|||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width,initial-scale=1.0" >
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" >
|
||||||
<link rel="stylesheet" type="text/css" href="{% static 'styles.css' %}">
|
<link rel="stylesheet" type="text/css" href="{% static 'styles.css' %}">
|
||||||
|
|
||||||
|
<link rel="icon" type="image/png" href="{% static '/favicon/favicon-96x96.png' %}" sizes="96x96" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="{% static '/favicon/favicon.svg' %}" />
|
||||||
|
<link rel="shortcut icon" href="{% static '/favicon/favicon.ico' %}" />
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static '/favicon/apple-touch-icon.png' %}" />
|
||||||
|
<meta name="apple-mobile-web-app-title" content="epub2go" />
|
||||||
|
<link rel="manifest" href="{% static 'site.webmanifest' %}" />
|
||||||
|
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<header>
|
<header>
|
||||||
|
|||||||