diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index bdf4375..d61ed05 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -17,6 +17,7 @@ enableRobotsTXT = true
filename = "sitemap.xml"
[params]
+ favicon = ""
description = "The last theme you'll ever need. Maybe."
facebook = ""
twitter = "https://twitter.com/GoHugoIO"
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 1a59233..577940a 100755
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -18,6 +18,9 @@
{{ end }}
+ {{ block "favicon" . }}
+ {{ partial "site-favicon.html" . }}
+ {{ end }}
{{ if .RSSLink }}
diff --git a/layouts/partials/site-favicon.html b/layouts/partials/site-favicon.html
new file mode 100644
index 0000000..ffb9642
--- /dev/null
+++ b/layouts/partials/site-favicon.html
@@ -0,0 +1,3 @@
+{{ if .Site.Params.favicon }}
+
+{{ end }}
\ No newline at end of file