-
+ {{ range .Data.Pages.ByPublishDate }}
+ {{ partial "li.html" . }}
+ {{ end }}
+
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 559e1b4..bd7bf1e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog
+> v1.0.0
+
+- Change the set of fonts to **Nexa Bold, Raleway and Merriweather**.
+- Add an optional navigation at the bottom of posts.
+- Add the tags in the metadatas and add a template for tags pages.
+- Add Google Analytics (thx @mtn)
+- Add author informations on posts (thx @seemethere)
+- Replace ionicons with svgs
+
> v0.9.0
- **Change the folder of high res images, now it's the root of the image folder.**
diff --git a/exampleSite/config.toml b/exampleSite/config.toml
index a0ffed0..baac946 100644
--- a/exampleSite/config.toml
+++ b/exampleSite/config.toml
@@ -29,3 +29,4 @@ email = "you@example.com"
linkedin = "john-example-aa80ue8è"
twitter = "example"
social_banner = "img/banner.png"
+posts_navigation = true
\ No newline at end of file
diff --git a/exampleSite/static/css/colors.css b/exampleSite/static/css/colors.css
new file mode 100644
index 0000000..5b8715c
--- /dev/null
+++ b/exampleSite/static/css/colors.css
@@ -0,0 +1,61 @@
+a {
+ color: #527fc1;
+}
+
+a:hover {
+ color: #1a3152;
+}
+
+section.main .content .markdown, section.header .name, section.header nav ul li:hover {
+ color: #181d2a;
+}
+
+section.header nav ul li {
+ color: #6a7a8b;
+}
+
+section.main .content .markdown code {
+ background-color: #f9f9f9;
+ color: #527fc1;
+}
+
+section.main .content .markdown pre, section.main .content .markdown pre code {
+ background-color: #282a36;
+ color: #87a5d2;
+}
+
+.hljs, .hljs-subst, .hljs-variable {
+ color: #87a5d2;
+}
+
+.hljs-type {
+ color: #97d28b;
+}
+
+.hljs-quote {
+ color: #ffcb8d;
+}
+
+.hljs-string, .hljs-number, .hljs-selector-id, .hljs-selector-class, .hljs-template-tag, .hljs-deletion {
+ color: #96c2d7;
+}
+
+.hljs-comment {
+ color: #9aacbf;
+}
+
+.hljs-regexp, .hljs-symbol, .hljs-template-variable {
+ color: #ffcb8d;
+}
+
+.hljs-keyword, .hljs-attribute, .hljs-meta-keyword, .hljs-doctag, .hljs-name {
+ color: #97d28b;
+}
+
+.hljs-link, .hljs-selector-attr, .hljs-selector-pseudo, .hljs-title, .hljs-section {
+ color: #ff8e91;
+}
+
+.hljs-built_in, .hljs-bullet, .hljs-code, .hljs-addition {
+ color: #97d28b;
+}
\ No newline at end of file
diff --git a/layouts/_default/taxonomy.html b/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..9d37cdb
--- /dev/null
+++ b/layouts/_default/taxonomy.html
@@ -0,0 +1,16 @@
+{{ partial "header.html" . }}
+
+ {{ range .Data.Pages.ByPublishDate }}
+ {{ partial "li.html" . }}
+ {{ end }}
+
+