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

github.com/goodroot/hugo-classic.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgoodroot <root@goodroot.ca>2019-11-12 05:24:03 +0300
committergoodroot <root@goodroot.ca>2019-11-12 05:24:03 +0300
commit30d6a83c716bdbe7a6c6a66636940e6d8187ece7 (patch)
tree58732540ff9678e2b14296e9852cf8ce67ec248d
parent61b7c2e49da81339cfb4c85ba0f82ab524b95b5d (diff)
favico and site manifest
-rw-r--r--exampleSite/static/images/android-chrome-192x192.pngbin0 -> 1307 bytes
-rw-r--r--exampleSite/static/images/android-chrome-512x512.pngbin0 -> 6220 bytes
-rw-r--r--exampleSite/static/images/apple-touch-icon.pngbin0 -> 1159 bytes
-rw-r--r--exampleSite/static/images/favicon-16x16.pngbin0 -> 187 bytes
-rw-r--r--exampleSite/static/images/favicon-32x32.pngbin0 -> 234 bytes
-rw-r--r--exampleSite/static/images/favicon.icobin0 -> 15406 bytes
-rw-r--r--exampleSite/static/images/site.webmanifest1
-rw-r--r--layouts/partials/header.html5
8 files changed, 6 insertions, 0 deletions
diff --git a/exampleSite/static/images/android-chrome-192x192.png b/exampleSite/static/images/android-chrome-192x192.png
new file mode 100644
index 0000000..4bf78af
--- /dev/null
+++ b/exampleSite/static/images/android-chrome-192x192.png
Binary files differ
diff --git a/exampleSite/static/images/android-chrome-512x512.png b/exampleSite/static/images/android-chrome-512x512.png
new file mode 100644
index 0000000..8bf4499
--- /dev/null
+++ b/exampleSite/static/images/android-chrome-512x512.png
Binary files differ
diff --git a/exampleSite/static/images/apple-touch-icon.png b/exampleSite/static/images/apple-touch-icon.png
new file mode 100644
index 0000000..c5870fa
--- /dev/null
+++ b/exampleSite/static/images/apple-touch-icon.png
Binary files differ
diff --git a/exampleSite/static/images/favicon-16x16.png b/exampleSite/static/images/favicon-16x16.png
new file mode 100644
index 0000000..5444143
--- /dev/null
+++ b/exampleSite/static/images/favicon-16x16.png
Binary files differ
diff --git a/exampleSite/static/images/favicon-32x32.png b/exampleSite/static/images/favicon-32x32.png
new file mode 100644
index 0000000..257696f
--- /dev/null
+++ b/exampleSite/static/images/favicon-32x32.png
Binary files differ
diff --git a/exampleSite/static/images/favicon.ico b/exampleSite/static/images/favicon.ico
new file mode 100644
index 0000000..83ec83e
--- /dev/null
+++ b/exampleSite/static/images/favicon.ico
Binary files differ
diff --git a/exampleSite/static/images/site.webmanifest b/exampleSite/static/images/site.webmanifest
new file mode 100644
index 0000000..45dc8a2
--- /dev/null
+++ b/exampleSite/static/images/site.webmanifest
@@ -0,0 +1 @@
+{"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
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index fd3c497..cf0913c 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -5,6 +5,11 @@
<script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
+ <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
+ <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
+ <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
+ <link rel="manifest" href="/images/site.webmanifest">
+
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.Description }}{{ end }}">