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

github.com/vividvilla/ezhil.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rw-r--r--layouts/partials/header.html4
2 files changed, 6 insertions, 0 deletions
diff --git a/README.md b/README.md
index e9cc74a..ace07d7 100644
--- a/README.md
+++ b/README.md
@@ -63,6 +63,8 @@ paginate = 10
disableDisqusTypes = ["page"]
# If social media links are enabled then enable this to fetch icons from CDN instead of hosted on your site.
featherIconsCDN = true
+ # Specify favicon (icons/i.png maps to static/icons/i.png). No favicon if not defined.
+ favicon = "icons/myicon.png"
# Main menu which appears below site header.
[[menu.main]]
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
index 273c6cc..9f8913a 100644
--- a/layouts/partials/header.html
+++ b/layouts/partials/header.html
@@ -9,6 +9,10 @@
<title>{{ $title }} - {{ $siteTitle }}</title>
{{- end -}}
+ {{- if isset .Site.Params "favicon" -}}
+ <link rel="icon" type="image/png" href={{ .Site.Params.favicon }} />
+ {{- end -}}
+
<meta name="viewport" content="width=device-width, initial-scale=1">
{{ with .OutputFormats.Get "rss" -}}
{{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }}