diff --git a/config.toml b/config.toml index e4b7418..64a2094 100644 --- a/config.toml +++ b/config.toml @@ -1,3 +1,19 @@ baseURL = "http://example.org/" languageCode = "en-us" title = "My New Hugo Site" +theme = "icon" + +[params] + author = "Your name" + description = "Cool description" + +# Hero section (from here on is for icon theme) +[params.hero] + img = "background.jpg" + title = "Brett & Kate's Wedding" + description = "But, we are already married" + +# Footer section +[params.footer] + enable = true + note = "" diff --git a/layouts/index.html b/layouts/index.html new file mode 100755 index 0000000..ff00cad --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,41 @@ + + + + + + + + {{ partial "header.html" . }} + + + + +
+
+
+ + {{ partial "hero.html" . }} + + {{ partial "nav.html" . }} + + {{ partial "intro.html" . }} + + {{ partial "registry.html" .}} + + {{ partial "schedule.html" .}} + + {{ partial "things-to-do.html" .}} + + {{ partial "faq.html" .}} + + {{ if .Site.Params.footer.enable }} + {{ partial "footer.html" .}} + {{ end }} + +
+
+ + {{ partial "js.html" .}} + + + diff --git a/layouts/partials/faq.html b/layouts/partials/faq.html new file mode 100644 index 0000000..c81c26c --- /dev/null +++ b/layouts/partials/faq.html @@ -0,0 +1,7 @@ +
+
+
+

FAQ

+
+
+
diff --git a/layouts/partials/intro.html b/layouts/partials/intro.html new file mode 100644 index 0000000..bd37411 --- /dev/null +++ b/layouts/partials/intro.html @@ -0,0 +1,7 @@ +
+
+
+

Intro

+
+
+
diff --git a/layouts/partials/nav.html b/layouts/partials/nav.html new file mode 100755 index 0000000..fc419ce --- /dev/null +++ b/layouts/partials/nav.html @@ -0,0 +1,14 @@ +
+
+ +
+
diff --git a/layouts/partials/registry.html b/layouts/partials/registry.html new file mode 100644 index 0000000..9af4e28 --- /dev/null +++ b/layouts/partials/registry.html @@ -0,0 +1,7 @@ +
+
+
+

Registry

+
+
+
diff --git a/layouts/partials/schedule.html b/layouts/partials/schedule.html new file mode 100644 index 0000000..3111994 --- /dev/null +++ b/layouts/partials/schedule.html @@ -0,0 +1,7 @@ +
+
+
+

Schedule

+
+
+
diff --git a/layouts/partials/things-to-do.html b/layouts/partials/things-to-do.html new file mode 100644 index 0000000..ba239cd --- /dev/null +++ b/layouts/partials/things-to-do.html @@ -0,0 +1,7 @@ +
+
+
+

Things to do

+
+
+
diff --git a/static/background.jpg b/static/background.jpg new file mode 100644 index 0000000..6da2e1b Binary files /dev/null and b/static/background.jpg differ