diff --git a/.gitignore b/.gitignore
index 2d60fa6..74ac415 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,6 +2,5 @@
node_modules/
bin/
yarn/
-data/
build/
vendor/
diff --git a/exampleSite/.gitignore b/exampleSite/.gitignore
new file mode 100644
index 0000000..364c4c9
--- /dev/null
+++ b/exampleSite/.gitignore
@@ -0,0 +1,2 @@
+public/
+themes
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
new file mode 100644
index 0000000..c4c530f
--- /dev/null
+++ b/exampleSite/config.toml
@@ -0,0 +1,35 @@
+baseURL = "http://example.org/"
+languageCode = "en-us"
+title = "slate theme demo"
+theme = "slate"
+
+publishDir = "docs"
+
+[ params ]
+Favicon = "favicon.ico"
+OpenLinksInNewWindow = true
+
+[[ params.nav ]]
+name = "favorites"
+tag = "favorite"
+icon = "star"
+
+[[ params.nav ]]
+name = "search"
+tag = "search"
+icon = "search"
+
+[[ params.nav ]]
+name = "shopping"
+tag = "shopping"
+icon = "shopping-basket"
+
+[[ params.nav ]]
+name = "music"
+tag = "music"
+icon = "headphones"
+
+[[ params.nav ]]
+name = "video"
+tag = "video"
+icon = "video-camera"
diff --git a/exampleSite/content/.nofiles b/exampleSite/content/.nofiles
new file mode 100644
index 0000000..e69de29
diff --git a/exampleSite/data/links.yml b/exampleSite/data/links.yml
new file mode 100644
index 0000000..e73b1e8
--- /dev/null
+++ b/exampleSite/data/links.yml
@@ -0,0 +1,101 @@
+tiles:
+-
+ name: "google"
+ url: "https://google.com"
+ img: "logos/google.svg"
+ tags: ["favorite", "search"]
+-
+ name: "bing"
+ url: "https://bing.com"
+ img: "logos/bing.svg"
+ txt_color: "#ffffff"
+ bg_color: "#ffb900"
+ tags: ["search"]
+-
+ name: "amazon"
+ url: "https://amazon.com"
+ img: "logos/amazon.svg"
+ bg_color: "#ffffff"
+ txt_color: "#ff9900"
+ tags: ["favorite", "shopping"]
+-
+ name: "reddit"
+ url: "https://reddit.com"
+ img: "logos/reddit.svg"
+ bg_color: "#5f99cf"
+ txt_color: "#ffffff"
+-
+ name: "spotify"
+ url: "https://web.spotify.com"
+ img: "logos/spotify.svg"
+ bg_color: "#191414"
+ txt_color: "#1db954"
+ tags: ["favorite", "music"]
+-
+ name: "google music"
+ url: "https://play.google.com/music/listen"
+ img: "logos/google-music.png"
+ bg_color: "#ffffff"
+ txt_color: "#ff5722"
+ tags: ["music"]
+-
+ name: "pandora"
+ url: "https://pandora.com"
+ img: "logos/pandora.svg"
+ bg_color: "#005483"
+ txt_color: "#ffffff"
+ tags: ["music"]
+-
+ name: "soundcloud"
+ url: "https://soundcloud.com"
+ img: "logos/soundcloud.svg"
+ bg_color: "#ffffff"
+ txt_color: "#ff3300"
+ tags: ["music"]
+-
+ name: "wikipedia"
+ url: "https://wikipedia.org"
+ img: "logos/wikipedia.svg"
+ bg_color: "#ffffff"
+ txt_color: "#000000"
+-
+ name: "ebay"
+ url: "https://ebay.com"
+ img: "logos/ebay.svg"
+ bg_color: "#ffffff"
+ txt_color: "#000000"
+ tags: ["shopping"]
+-
+ name: "twitter"
+ url: "https://twitter.com"
+ img: "logos/twitter.svg"
+ bg_color: "#1da1f2"
+ txt_color: "#f5f8fa"
+-
+ name: "twitch"
+ url: "https://twitch.com"
+ img: "logos/twitch.svg"
+ bg_color: "#f1f1f1"
+ txt_color: "#6441a5"
+ tags: ["video"]
+-
+ name: "youtube"
+ url: "https://youtube.com"
+ img: "logos/youtube.svg"
+ bg_color: "#ffffff"
+ txt_color: "#cd201f"
+ tags: ["video"]
+-
+ name: "netflix"
+ url: "https://netflix.com"
+ img: "logos/netflix.svg"
+ bg_color: "#221f1f"
+ txt_color: "#e50914"
+ tags: ["video"]
+
+-
+ name: "imgur"
+ url: "https://imgur.com"
+ img: "logos/imgur.svg"
+ bg_color: "#ffffff"
+ txt_color: "#85bf25"
diff --git a/exampleSite/static/favicon.ico b/exampleSite/static/favicon.ico
new file mode 100644
index 0000000..9c161b2
Binary files /dev/null and b/exampleSite/static/favicon.ico differ
diff --git a/exampleSite/static/logos/amazon.svg b/exampleSite/static/logos/amazon.svg
new file mode 100644
index 0000000..c9fca19
--- /dev/null
+++ b/exampleSite/static/logos/amazon.svg
@@ -0,0 +1,95 @@
+
+
diff --git a/exampleSite/static/logos/bing.svg b/exampleSite/static/logos/bing.svg
new file mode 100644
index 0000000..cfd7009
--- /dev/null
+++ b/exampleSite/static/logos/bing.svg
@@ -0,0 +1,104 @@
+
+
+
+
diff --git a/exampleSite/static/logos/ebay.svg b/exampleSite/static/logos/ebay.svg
new file mode 100644
index 0000000..c484c1f
--- /dev/null
+++ b/exampleSite/static/logos/ebay.svg
@@ -0,0 +1,27 @@
+
+
+
diff --git a/exampleSite/static/logos/google-music.png b/exampleSite/static/logos/google-music.png
new file mode 100644
index 0000000..0dfa1f4
Binary files /dev/null and b/exampleSite/static/logos/google-music.png differ
diff --git a/exampleSite/static/logos/google.svg b/exampleSite/static/logos/google.svg
new file mode 100644
index 0000000..1918c6e
--- /dev/null
+++ b/exampleSite/static/logos/google.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/exampleSite/static/logos/imgur.svg b/exampleSite/static/logos/imgur.svg
new file mode 100644
index 0000000..6696863
--- /dev/null
+++ b/exampleSite/static/logos/imgur.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/exampleSite/static/logos/netflix.svg b/exampleSite/static/logos/netflix.svg
new file mode 100644
index 0000000..0ce1bf4
--- /dev/null
+++ b/exampleSite/static/logos/netflix.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/exampleSite/static/logos/pandora.svg b/exampleSite/static/logos/pandora.svg
new file mode 100644
index 0000000..7288ece
--- /dev/null
+++ b/exampleSite/static/logos/pandora.svg
@@ -0,0 +1,79 @@
+
+
diff --git a/exampleSite/static/logos/reddit.svg b/exampleSite/static/logos/reddit.svg
new file mode 100644
index 0000000..7665af0
--- /dev/null
+++ b/exampleSite/static/logos/reddit.svg
@@ -0,0 +1,47 @@
+
+
+
diff --git a/exampleSite/static/logos/soundcloud.svg b/exampleSite/static/logos/soundcloud.svg
new file mode 100644
index 0000000..8125588
--- /dev/null
+++ b/exampleSite/static/logos/soundcloud.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/exampleSite/static/logos/spotify.svg b/exampleSite/static/logos/spotify.svg
new file mode 100644
index 0000000..d0347db
--- /dev/null
+++ b/exampleSite/static/logos/spotify.svg
@@ -0,0 +1,4 @@
+
+
diff --git a/exampleSite/static/logos/twitch.svg b/exampleSite/static/logos/twitch.svg
new file mode 100644
index 0000000..0293ed9
--- /dev/null
+++ b/exampleSite/static/logos/twitch.svg
@@ -0,0 +1,59 @@
+
+
+
+
\ No newline at end of file
diff --git a/exampleSite/static/logos/twitter.svg b/exampleSite/static/logos/twitter.svg
new file mode 100644
index 0000000..df53c5a
--- /dev/null
+++ b/exampleSite/static/logos/twitter.svg
@@ -0,0 +1,46 @@
+
+
+
diff --git a/exampleSite/static/logos/wikipedia.svg b/exampleSite/static/logos/wikipedia.svg
new file mode 100644
index 0000000..c455167
--- /dev/null
+++ b/exampleSite/static/logos/wikipedia.svg
@@ -0,0 +1,55 @@
+
+
+
diff --git a/exampleSite/static/logos/youtube.svg b/exampleSite/static/logos/youtube.svg
new file mode 100644
index 0000000..ea6a3e8
--- /dev/null
+++ b/exampleSite/static/logos/youtube.svg
@@ -0,0 +1,112 @@
+
+
+
+
\ No newline at end of file