summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md13
-rw-r--r--img/favicon_hires.pngbin0 -> 13544 bytes
-rw-r--r--index.php5
-rw-r--r--manifest.json14
4 files changed, 29 insertions, 3 deletions
diff --git a/README.md b/README.md
index ef62cd6..2b6c0c8 100644
--- a/README.md
+++ b/README.md
@@ -5,6 +5,15 @@ responsive web EPUB reader using EPUB.js and Calibre database
relies on HTTP Authentication provided by httpd
-due to EPUB.js strangeness, some URL rewriting is required (nginx
-config included)
+due to EPUB.js strangeness, some URL rewriting is required (nginx config included)
+Acknowledgements
+================
+
+1. Hires favicon from Flaticon
+
+https://www.shareicon.net/school-material-education-tools-and-utensils-reader-open-leisure-open-book-reading-book-803832
+
+2. Normal favicon from Silk icon pack
+
+http://www.famfamfam.com/lab/icons/silk/
diff --git a/img/favicon_hires.png b/img/favicon_hires.png
new file mode 100644
index 0000000..cc8db65
--- /dev/null
+++ b/img/favicon_hires.png
Binary files differ
diff --git a/index.php b/index.php
index 89a7c8c..81fd2ed 100644
--- a/index.php
+++ b/index.php
@@ -17,7 +17,10 @@
<script src="lib/holder.min.js"></script>
<title>The Epube</title>
<link type="text/css" rel="stylesheet" media="screen" href="css/index.css" />
- <link id="favicon" rel="shortcut icon" type="image/png" href="img/favicon.png" />
+ <link rel="shortcut icon" type="image/png" href="img/favicon.png" />
+ <link rel="shortcut icon" sizes="192x192" href="img/favicon_hires.png">
+ <link rel="manifest" href="manifest.json">
+ <meta name="mobile-web-app-capable" content="yes">
</head>
<body>
diff --git a/manifest.json b/manifest.json
new file mode 100644
index 0000000..967c13e
--- /dev/null
+++ b/manifest.json
@@ -0,0 +1,14 @@
+{
+ "name": "The Epube",
+ "icons": [
+ {
+ "src": "img/favicon_hires.png",
+ "sizes": "192x192",
+ "type": "image/png",
+ "density": 4.0
+ }
+ ],
+ "start_url": "index.php",
+ "display": "standalone",
+ "orientation": "portrait"
+}