diff --git a/404.md b/404.md
new file mode 100644
index 0000000000..0137fd7234
--- /dev/null
+++ b/404.md
@@ -0,0 +1,7 @@
+---
+layout: default
+title: 404 - Page not found
+---
+404 - Page not found
+====================
+Sorry, we couldn’t find the requested URL. You can try again by going [back to the homepage]({{ site.baseurl }}).
diff --git a/_config.yml b/_config.yml
index dd6ac88571..e6f5d62606 100644
--- a/_config.yml
+++ b/_config.yml
@@ -8,7 +8,7 @@ author:
url: "http://www.jacoporabolini.com"
# Build settings
-baseurl: /emerald/ # Change this to your relative path (ex: /blog/), or leave just a /
+baseurl: /emerald # Change this to your relative path (ex: /blog/), or leave just a /
markdown: kramdown
source: .
destination: ./_site
@@ -25,6 +25,10 @@ defaults:
values:
layout: "post"
+# Plugins
+gems:
+ - jekyll-paginate
+
# Custom variables
version: "1.1.0"
diff --git a/_includes/footer.html b/_includes/footer.html
index 64b2017df3..d48c1c4755 100644
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -1 +1 @@
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/_includes/head.html b/_includes/head.html
index ba920cec28..4be94ddc66 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -7,8 +7,8 @@
diff --git a/readme.md b/readme.md
index c1dfb775ff..462d93185c 100644
--- a/readme.md
+++ b/readme.md
@@ -10,6 +10,23 @@ After extracting the content from the folder into the selected directory, you ca
Additionally it is possible to fork the repository and use Github Pages as hosting. By following this way it will be enough to change the ``baseurl`` value into the ``_config.yml`` file, with the directory name of your project (for example /blog) or simply with a "/" (slash) if you want install Emerald in the root.
+### Options
+Starting from the 1.1.0 version, you can customize Emerald thanks to a few options. Now it is possible to set a custom header tag by setting the related option in the ``_config.yml`` file to "true". Then insert your custom code into the ``header-custom.html`` file.
+In the same way, you can customize the footer of the navigation menu, by setting to "true" the related option and put your code into the ``nav-footer-custom.html`` file.
+Moreover it is now possible to select a reverse option that allows to move the navigation menu to the left side, by setting it to "true".
+
+### Colors
+The basic colors are set into the ``base.scss`` file:
+- $main-color: used for the menu, title, link and footer
+- $background-color: used for background and links in the navigation menu
+- $text-color: used for text and title in posts and pages
+
+To customize the colors, just set the values in HEX, RGB (or RGBa) or any other format accepted by CSS.
+
+### Navigation menu
+Starting from the 1.1.0 version, the links inside the navigation menu are autogenerated from pages having the layout set to ``page``.
+You can set custom links, by putting in the ```` tag into the ``link.html`` file.
+
### Branch
Emerald has two branch:
- ``master``: is for developing pourpose.
@@ -29,7 +46,7 @@ Last but not least: the [Jekyll documentation](http://jekyllrb.com) is the best
### Jacopo Rabolini
- Web site: [www.jacoporabolini.com](http://www.jacoporabolini.com)
-- Google+: [+JacopoRabolini](https://plus.google.com/u/0/+JacopoRabolini/posts)
+- Linkedin: [linkedin.com/in/jacopo-rabolini/](https://www.linkedin.com/in/jacopo-rabolini/)
## License
Emerald is released under [MIT License](license.md).