diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index 4229a15..4c602ce 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -1,6 +1,6 @@
baseURL = "http://example.org/"
languageCode = "en-us"
-title = "Basic Hugo Theme"
+title = "Semantic IndieWeb Theme"
copyright = "Copyright © 2019, Copyright Owner Name | Built with [Hugo](https://gohugo.io/)"
theme = "semantic-indieweb"
paginate = 5
@@ -12,6 +12,14 @@ paginate = 5
subtitle = "A theme with no CSS and only basic layouts"
mainSections = [ "posts" ]
+ # Configuration Parameters for IndieWeb h-card
+ [params.Card]
+ Author = "Site Author Name"
+ Photo = "images/picture-o.svg"
+ Locality = "City/Town/Village"
+ Region = "State/County/Province"
+ Country = "Country Name"
+
# Configuration Parameters for IndieWeb Identity
[[params.Identity]]
type = "Email"
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html
index 878c04a..f69e8c3 100644
--- a/layouts/_default/baseof.html
+++ b/layouts/_default/baseof.html
@@ -8,6 +8,13 @@
{{- block "title" . -}}
{{ .Site.Title }}
{{- end -}}
+ {{ block "styles" . }}
+
+
+ {{ end }}
+ {{ block "icons" . }}
+ {{ partial "icons.html" . }}
+ {{ end }}
@@ -40,6 +47,11 @@
{{- block "content-footer" . -}}
{{- end -}}
+