diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index ac2ae421609635937614d959857ed20d7302548c..be175ac577265907e5c20607ac7e728b1e2b6400 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -5,15 +5,19 @@ DefaultContentLanguage = "en"
 enableInlineShortcodes = true
 summarylength = 10
 enableEmoji = true
+paginate = 5
 
 [params]
-description = ""
+title = "Soho Theme"
+description = "Example Blog"
 # gravatar = "soho@example.com"
+images = ["images/profile.png"]
 profilePicture = "images/profile.png"
 copyright = "Author Name"
 license = "CC BY-SA 4.0"
 licenseURL = "https://creativecommons.org/licenses/by-sa/4.0"
 builtWith = true
+mainSections = ["post"]
 
   [[params.socialIcons]]
   icon = "fa-linkedin"
@@ -23,13 +27,18 @@ builtWith = true
   [[params.socialIcons]]
   icon = "fa-github"
   title = "GitHub"
-  url = "#"
+  url = "https://github.com/alexandrevicenzi/soho"
 
   [[params.socialIcons]]
   icon = "fa-twitter"
   title = "Twitter"
   url = "#"
 
+[taxonomies]
+  series = "series"
+  category = "categories"
+  tag = "tags"
+
 [menu]
 
   [[menu.main]]
@@ -38,12 +47,30 @@ builtWith = true
   identifier = "posts"
   url = "/posts/"
 
+  [[menu.main]]
+  name = "Categories"
+  weight = 200
+  identifier = "categories"
+  url = "/categories/"
+
+  [[menu.main]]
+  name = "Tags"
+  weight = 200
+  identifier = "tags"
+  url = "/tags/"
+
   [[menu.main]]
   name = "About"
   identifier = "about"
-  weight = 300
+  weight = 10
   url = "/about/"
 
+  [[menu.main]]
+  name = "Contact"
+  identifier = "contact"
+  weight = 20
+  url = "/contact/"
+
 [markup]
 
   [markup.highlight]
diff --git a/exampleSite/content/_index.md b/exampleSite/content/_index.md
index 6abc75e1c28d8f93dd45afca1a0d614741d02fa9..0b24229a44b774bf746e383e3bb0513035efee9b 100644
--- a/exampleSite/content/_index.md
+++ b/exampleSite/content/_index.md
@@ -1,4 +1,5 @@
 +++
+title = "Soho Theme"
 author = "Hugo Authors"
 +++
 
diff --git a/exampleSite/content/about.md b/exampleSite/content/about.md
index a4128062c16799885dfe5c98d807db19d4359d08..546c422346f6ef05637765c25a5aedee645d3415 100644
--- a/exampleSite/content/about.md
+++ b/exampleSite/content/about.md
@@ -2,7 +2,7 @@
 title = "About"
 description = "Hugo, the world’s fastest framework for building websites"
 date = "2019-02-28"
-aliases = ["about-us","about-hugo","contact"]
+aliases = ["about-us","about-hugo"]
 author = "Hugo Authors"
 +++
 
diff --git a/exampleSite/content/contact.md b/exampleSite/content/contact.md
new file mode 100644
index 0000000000000000000000000000000000000000..ca40304ad4c007dd1e643f931d92b7735e4c0c53
--- /dev/null
+++ b/exampleSite/content/contact.md
@@ -0,0 +1,6 @@
++++
+title = "Contact"
+date = "2020-02-01"
++++
+
+Get in contact with us!
diff --git a/exampleSite/content/post/emoji-support.md b/exampleSite/content/post/emoji-support.md
index ecf6c86103c3d54208bfa8e551afa365e17ff5ce..23311d377606e207c4c1cb7fc5c81237799a500c 100644
--- a/exampleSite/content/post/emoji-support.md
+++ b/exampleSite/content/post/emoji-support.md
@@ -44,4 +44,4 @@ font-family: Apple Color Emoji,Segoe UI Emoji,NotoColorEmoji,Segoe UI Symbol,And
 }
 }
 </style>
-{{< /css.inline >}}
\ No newline at end of file
+{{< /css.inline >}}
diff --git a/exampleSite/content/post/hidden-page.md b/exampleSite/content/post/hidden-page.md
new file mode 100644
index 0000000000000000000000000000000000000000..e349ce8818cb7943de63772b7276052ecf9bb16f
--- /dev/null
+++ b/exampleSite/content/post/hidden-page.md
@@ -0,0 +1,11 @@
++++
+title = "Hidden Page"
+date = "2020-02-01"
+description = "This page is hidden and should not be visible without knowing the URL."
+tags = [
+    "privacy",
+]
+hidden = true
++++
+
+This page is hidden and should not be visible without knowing the URL.
diff --git a/exampleSite/content/post/soho.md b/exampleSite/content/post/soho.md
new file mode 100644
index 0000000000000000000000000000000000000000..5819f9b4ae68798b0433d7ea4959fb1edeba5809
--- /dev/null
+++ b/exampleSite/content/post/soho.md
@@ -0,0 +1,29 @@
++++
+title = "Soho Theme"
+date = "2020-05-01"
+description = "About Soho Theme."
+tags = [
+    "theme",
+]
++++
+
+[Soho](https://github.com/alexandrevicenzi/soho) is a minimalist two-column [hugo](https://gohugo.io) theme based on [Hyde](https://github.com/spf13/hyde) and inspired by the success of [Flex](https://github.com/alexandrevicenzi/Flex).
+
+## Features
+
+- Mobile First
+- Responsive
+- Semantic
+- SEO Best Practices
+- Open Graph
+- Rich Snippets (JSON-LD)
+- Twitter Card
+- Pagination
+- Hidden Pages
+- Customizable
+- Support all [Hugo Internals](https://gohugo.io/templates/internal/)
+
+## Integrations
+
+- [Disqus](https://disqus.com/)
+- [Google Analytics](https://www.google.com/analytics/web/)
diff --git a/exampleSite/static/images/profile.png b/exampleSite/static/images/profile.png
index 0999641436b6d350d75ada5eb741b8048c9af046..1641e89eeb315b5f572b95e263b126ad761564f7 100644
Binary files a/exampleSite/static/images/profile.png and b/exampleSite/static/images/profile.png differ