Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/EmielH/hallo-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmiel Hollander <EmielH@users.noreply.github.com>2019-03-16 12:25:04 +0300
committerEmiel Hollander <EmielH@users.noreply.github.com>2019-03-16 12:25:04 +0300
commit12b9f0165bd77227ddbbbefb32416c44783843b2 (patch)
tree3e8eacb9b8185d94217ddb27f8b19d239616baf1
parent4b0e1f2c509486e0b0eceb35cbc94772d0d8ace2 (diff)
Add favicon
-rw-r--r--layouts/partials/head.html6
-rw-r--r--static/android-chrome-192x192.pngbin0 -> 19065 bytes
-rw-r--r--static/android-chrome-512x512.pngbin0 -> 59602 bytes
-rw-r--r--static/apple-touch-icon.pngbin0 -> 17145 bytes
-rw-r--r--static/favicon-16x16.pngbin0 -> 799 bytes
-rw-r--r--static/favicon-32x32.pngbin0 -> 2038 bytes
-rw-r--r--static/favicon.icobin0 -> 15406 bytes
-rw-r--r--static/site.webmanifest19
8 files changed, 25 insertions, 0 deletions
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index 193f38b..5e94509 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -25,6 +25,12 @@
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Montserrat:400,700">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.4.2/css/all.css" integrity="sha384-/rXc/GQVaYpyDdyxK+ecHPVYJSN9bmVFBvjA/9eOB+pb3F2w2N6fc5qB9Ew5yIns" crossorigin="anonymous">
+ <!-- Favicon -->
+ <link rel="apple-touch-icon" sizes="180x180" href="{{ "apple-touch-icon.png" | relURL }}">
+ <link rel="icon" type="image/png" sizes="32x32" href="{{ "favicon-32x32.png" | relURL }}">
+ <link rel="icon" type="image/png" sizes="16x16" href="{{ "favicon-16x16.png" | relURL }}">
+ <link rel="manifest" href="{{ "site.webmanifest" | relURL }}">
+
<!-- RSS -->
<link href="{{ .RSSLink }}" rel="alternate" type="application/rss+xml" title="{{ .Site.Title }}" />
</head>
diff --git a/static/android-chrome-192x192.png b/static/android-chrome-192x192.png
new file mode 100644
index 0000000..c64dd7a
--- /dev/null
+++ b/static/android-chrome-192x192.png
Binary files differ
diff --git a/static/android-chrome-512x512.png b/static/android-chrome-512x512.png
new file mode 100644
index 0000000..87a43df
--- /dev/null
+++ b/static/android-chrome-512x512.png
Binary files differ
diff --git a/static/apple-touch-icon.png b/static/apple-touch-icon.png
new file mode 100644
index 0000000..2e45733
--- /dev/null
+++ b/static/apple-touch-icon.png
Binary files differ
diff --git a/static/favicon-16x16.png b/static/favicon-16x16.png
new file mode 100644
index 0000000..648591c
--- /dev/null
+++ b/static/favicon-16x16.png
Binary files differ
diff --git a/static/favicon-32x32.png b/static/favicon-32x32.png
new file mode 100644
index 0000000..68150d2
--- /dev/null
+++ b/static/favicon-32x32.png
Binary files differ
diff --git a/static/favicon.ico b/static/favicon.ico
new file mode 100644
index 0000000..e049023
--- /dev/null
+++ b/static/favicon.ico
Binary files differ
diff --git a/static/site.webmanifest b/static/site.webmanifest
new file mode 100644
index 0000000..901bd0c
--- /dev/null
+++ b/static/site.webmanifest
@@ -0,0 +1,19 @@
+{
+ "name": "",
+ "short_name": "",
+ "icons": [
+ {
+ "src": "/android-chrome-192x192.png",
+ "sizes": "192x192",
+ "type": "image/png"
+ },
+ {
+ "src": "/android-chrome-512x512.png",
+ "sizes": "512x512",
+ "type": "image/png"
+ }
+ ],
+ "theme_color": "#ffffff",
+ "background_color": "#ffffff",
+ "display": "standalone"
+} \ No newline at end of file