From 74ac69fb6a90b0fe197a78d6ea0c067f1ad4bc51 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet Date: Fri, 24 Feb 2017 14:04:37 +0100 Subject: [PATCH 01/12] Remove duplicate lang code --- exampleSite/config.toml | 1 - layouts/partials/header.html | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index ce8de87..926ed8e 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -23,7 +23,6 @@ faviconfile = "img/logo.png" highlightjs = true progressively = true latestpostcount = 5 -lang = "en" github = "example" email = "you@example.com" linkedin = "john-example-aa80ue8è" diff --git a/layouts/partials/header.html b/layouts/partials/header.html index d1ab70e..5a41601 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -3,7 +3,7 @@ {{ partial "head.html" . }} - + {{ if .IsPage }}
From b89ca391a6c290bb2f3c75c906d5c5b379e55296 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet Date: Fri, 24 Feb 2017 14:50:45 +0100 Subject: [PATCH 02/12] Fix footnotes and anchor href --- exampleSite/content/blog/example-of-an-article.md | 2 +- layouts/partials/head.html | 1 - layouts/partials/header.html | 2 +- static/css/main.css | 12 +++++++++++- 4 files changed, 13 insertions(+), 4 deletions(-) diff --git a/exampleSite/content/blog/example-of-an-article.md b/exampleSite/content/blog/example-of-an-article.md index ad24994..0149b3b 100644 --- a/exampleSite/content/blog/example-of-an-article.md +++ b/exampleSite/content/blog/example-of-an-article.md @@ -13,7 +13,7 @@ best: true **This theme includes a tranparent way to defer images. This can be enabled/disabled in the `config.toml`.** -![image](./img/startup.jpg) +![image](/img/startup.jpg) **You will just have to do two images : the normal, and a low resolution one.** diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 3c2d476..8f3b042 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,5 @@ {{ partial "meta.html" . }} - {{ $url := replace .Permalink ( printf "%s" .Site.BaseURL) "" }} {{ if eq $url "" }} diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 5a41601..274534c 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -22,7 +22,7 @@ {{ range .Site.Sections }} {{ range first 1 (where .Pages "Section" "ne" "")}} {{ if ne .Section "blog"}} - <a href="{{ .Section | urlize }}"><li>{{ .Section }}</li></a> + <a href="{{ .Section | urlize | absURL }}"><li>{{ .Section }}</li></a> {{ end }} {{ end }} {{ end }} diff --git a/static/css/main.css b/static/css/main.css index bd5471b..e907f19 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -119,7 +119,7 @@ html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, +small, strike, strong, sub, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, @@ -871,3 +871,13 @@ section.main .content .markdown tbody tr:nth-child(odd) td, section.main .content .markdown tbody tr:nth-child(odd) th { background-color: #f7f7f7; } +section.main .content .markdown .footnotes ol { + list-style-type: decimal; + margin-left: 16px; +} +section.main .content .markdown .footnotes li { + list-style-type: unset; +} +section.main .content .markdown .footnote-ref { + font-size: 0.7em; +} \ No newline at end of file From 1866a82318f19f4ad10b48640c299e8ee7f0514a Mon Sep 17 00:00:00 2001 From: Alexis Tacnet <alexistacnet@gmail.com> Date: Sat, 25 Feb 2017 19:09:04 +0100 Subject: [PATCH 03/12] Fix font style in the markdown --- static/css/main.css | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index e907f19..0e95d28 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -692,6 +692,14 @@ a:hover { img { max-width: 100%; } +section.main .content .markdown { + font-size: 1em; + line-height: 1.75em; + color: #313537; + letter-spacing: 0.01rem; + font-family: 'Source Sans Pro', sans-serif; + font-weight: 100; +} section.main .content .markdown h1, section.main .content .markdown h2, section.main .content .markdown h3, @@ -699,6 +707,7 @@ section.main .content .markdown h4, section.main .content .markdown h5, section.main .content .markdown h6 { font-size: 22px; + font-family: 'Open Sans', 'Helvetica Neue', 'Arial', sans-serif; letter-spacing: -0.005rem; font-weight: 700; -moz-osx-font-smoothing: grayscale; @@ -762,13 +771,7 @@ section.main .content .markdown a code:hover { text-decoration: underline; } section.main .content .markdown p { - font-size: 1em; text-align: justify; - line-height: 1.75em; - color: #313537; - letter-spacing: 0.01rem; - font-family: 'Source Sans Pro', sans-serif; - font-weight: 100; margin-top: 0; margin-bottom: 1em; } @@ -789,7 +792,8 @@ section.main .content .markdown ul { } section.main .content .markdown li { list-style-type: disc; - list-style-position: inside; + list-style-position: outside; + margin-left: 2em; } section.main .content .markdown em { font-style: italic; @@ -824,13 +828,13 @@ section.main .content .markdown blockquote p:last-child { margin-bottom: 0; } @media (min-width: 550px) { + section.main .content .markdown { + font-size: 1.2em; + } section.main .content .markdown blockquote { padding-right: 5rem; padding-left: 1.25rem; } - section.main .content .markdown p { - font-size: 1.2em; - } } section.main .content .markdown figure { width: 100%; From 182d6ae7662d70c5c1375a0dd31b02e848ab8f8b Mon Sep 17 00:00:00 2001 From: Alexis Tacnet <alexistacnet@gmail.com> Date: Sat, 25 Feb 2017 21:04:13 +0100 Subject: [PATCH 04/12] Allow scroll in code --- static/css/main.css | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 0e95d28..4c51c3c 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -653,7 +653,7 @@ section.main .container .content .post-item { } @media (min-width: 600px) { .container { - margin: 0 30px; + padding: 0 30px; } section.header { padding-top: 60px; @@ -692,6 +692,9 @@ a:hover { img { max-width: 100%; } +section.main .content { + width: 100%; +} section.main .content .markdown { font-size: 1em; line-height: 1.75em; @@ -755,7 +758,6 @@ section.main .content .markdown pre { padding: 1rem; line-height: 1.5em; white-space: pre; - white-space: pre-wrap; word-break: break-all; word-wrap: break-word; } From 7dc989c3bfa6b55b52102f93770ec4a418c25536 Mon Sep 17 00:00:00 2001 From: Jente Hidskes <hjdskes@gmail.com> Date: Tue, 21 Feb 2017 19:53:41 +0100 Subject: [PATCH 05/12] Add a licensing page --- layouts/partials/header.html | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 274534c..fbbe78f 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -6,9 +6,9 @@ <body> {{ if .IsPage }} -<section class="header"> +<section class="header"> {{ else }} -<section class="header header-home"> +<section class="header header-home"> {{ end }} <div class="container"> <a href="{{ .Site.BaseURL }}"><img class="logo" src="{{ .Site.Params.logofile | absURL }}" alt="logo" /></a> @@ -27,7 +27,7 @@ {{ end }} {{ end }} {{ range where .Site.RegularPages "Section" ""}} - {{ if ne .Title "Home"}} + {{ if and (ne .Title "License") (ne .Title "Home")}} <a href="{{ .Permalink }}"><li>{{ .Title }}</li></a> {{ end }} {{ end }} @@ -41,12 +41,16 @@ <div class="container"> <div class="content"> + {{ if .Site.Params.copyright }} + <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright}}</a> + {{ end }} + {{ if .Site.Params.github }} <a href="https://github.com/{{ .Site.Params.github }}" target="_blank"> <i class="icon ion-social-github" title="github"></i> </a> {{ end }} - + {{ if .Site.Params.twitter }} <a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank"> <i class="icon ion-social-twitter" title="twitter"></i> From 0be5ca7adca960f0eaddf6f38896f1d515285563 Mon Sep 17 00:00:00 2001 From: Jente Hidskes <hjdskes@gmail.com> Date: Tue, 21 Feb 2017 23:19:07 +0100 Subject: [PATCH 06/12] Copyright string: change the font-size to 14px --- static/css/main.css | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/static/css/main.css b/static/css/main.css index 4c51c3c..40e27e3 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -124,8 +124,8 @@ b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; @@ -136,7 +136,7 @@ time, mark, audio, video { vertical-align: baseline; } /* HTML5 display-role reset for older browsers */ -article, aside, details, figcaption, figure, +article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; } @@ -422,6 +422,7 @@ section.icons .content { width: auto; } section.icons .content a { + font-size: 14px; margin-left: 6px; margin-right: 6px; color: #555555; From a26920d1a122cacbafc271a5501593cb786fd1dc Mon Sep 17 00:00:00 2001 From: Jente Hidskes <hjdskes@gmail.com> Date: Tue, 21 Feb 2017 23:20:52 +0100 Subject: [PATCH 07/12] Add an example license page --- exampleSite/config.toml | 3 ++- exampleSite/content/license.md | 28 ++++++++++++++++++++++++++++ 2 files changed, 30 insertions(+), 1 deletion(-) create mode 100644 exampleSite/content/license.md diff --git a/exampleSite/config.toml b/exampleSite/config.toml index 926ed8e..a0ffed0 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -18,6 +18,7 @@ blog = "blog/:slug/" dateform = "Jan 2, 2006" dateformfull = "Mon Jan 2 2006 15:04:05 MST" description = "Example blog" +copyright = "Copyright © 2015 Nishanth Shanmugham" logofile = "img/logo.png" faviconfile = "img/logo.png" highlightjs = true @@ -27,4 +28,4 @@ github = "example" email = "you@example.com" linkedin = "john-example-aa80ue8è" twitter = "example" -social_banner = "img/banner.png" \ No newline at end of file +social_banner = "img/banner.png" diff --git a/exampleSite/content/license.md b/exampleSite/content/license.md new file mode 100644 index 0000000..0c0fef9 --- /dev/null +++ b/exampleSite/content/license.md @@ -0,0 +1,28 @@ ++++ +title: "License" ++++ + +You can use this page to put a license on the contents of your blog, like so: + +> The MIT License (MIT) +> +> Copyright (c) 2015 Nishanth Shanmugham<nishanth.gerrard@gmail.com> +> +> Permission is hereby granted, free of charge, to any person obtaining a copy +> of this software and associated documentation files (the "Software"), to deal +> in the Software without restriction, including without limitation the rights +> to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +> copies of the Software, and to permit persons to whom the Software is +> furnished to do so, subject to the following conditions: +> +> The above copyright notice and this permission notice shall be included in +> all copies or substantial portions of the Software. +> +> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +> IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +> FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +> AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +> LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +> OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +> THE SOFTWARE. + From 77a27406dd5b0f0afb8be3cb72b706c94ff7dcac Mon Sep 17 00:00:00 2001 From: Jente Hidskes <hjdskes@gmail.com> Date: Sat, 25 Feb 2017 18:57:29 +0100 Subject: [PATCH 08/12] Center the copyright string and icons --- layouts/partials/header.html | 10 ++++++---- static/css/main.css | 9 +++++---- 2 files changed, 11 insertions(+), 8 deletions(-) diff --git a/layouts/partials/header.html b/layouts/partials/header.html index fbbe78f..03bf284 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -41,10 +41,6 @@ <div class="container"> <div class="content"> - {{ if .Site.Params.copyright }} - <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright}}</a> - {{ end }} - {{ if .Site.Params.github }} <a href="https://github.com/{{ .Site.Params.github }}" target="_blank"> <i class="icon ion-social-github" title="github"></i> @@ -74,6 +70,12 @@ <i class="icon ion-social-rss larger" title="rss"></i> </a> {{ end }} + + {{ if .Site.Params.copyright }} + </br> + <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright}}</a> + {{ end }} + </div> </div> </section> diff --git a/static/css/main.css b/static/css/main.css index 40e27e3..47bf4a9 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -420,6 +420,7 @@ section.icons .container { } section.icons .content { width: auto; + text-align: center; } section.icons .content a { font-size: 14px; @@ -451,10 +452,10 @@ section.icons .content a .icon.larger { background-color: transparent; } section.icons .container { - -webkit-justify-content: flex-start; - -moz-justify-content: flex-start; - -ms-justify-content: flex-start; - justify-content: flex-start; + -webkit-justify-content: center; + -moz-justify-content: center; + -ms-justify-content: center; + justify-content: center; } section.icons .content a { margin-left: 3px; From f52e02f88d2ae6068fc401065eb651853f772db0 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet <alexistacnet@gmail.com> Date: Sat, 25 Feb 2017 20:37:13 +0100 Subject: [PATCH 09/12] Extend the footer and always display icons at the bottom --- layouts/partials/footer.html | 45 ++++++++++++++++++ layouts/partials/header.html | 43 ----------------- static/css/main.css | 90 ++++++++++++------------------------ 3 files changed, 74 insertions(+), 104 deletions(-) diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 7ad7717..19a628a 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,3 +1,48 @@ +<section class="footer"> + <div class="container"> + <div class="copyright"> + + {{ if .Site.Params.copyright }} + <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright}}</a> + {{ end }} + + </div> + <div class="icons"> + + {{ if .Site.Params.github }} + <a href="https://github.com/{{ .Site.Params.github }}" target="_blank"> + <i class="icon ion-social-github" title="github"></i> + </a> + {{ end }} + + {{ if .Site.Params.twitter }} + <a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank"> + <i class="icon ion-social-twitter" title="twitter"></i> + </a> + {{ end }} + + {{ if .Site.Params.linkedin }} + <a href="https://www.linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank"> + <i class="icon ion-social-linkedin" title="linkedin"></i> + </a> + {{ end }} + + {{ if .Site.Params.email }} + <a href="mailto:{{ .Site.Params.email }}"> + <i class="icon ion-ios-email larger" title="email"></i> + </a> + {{ end }} + + {{ if .Site.RSSLink }} + <a href="{{ .Site.RSSLink }}"> + <i class="icon ion-social-rss larger" title="rss"></i> + </a> + {{ end }} + + </div> + </div> +</section> + {{ partial "footer_scripts" . }} </body> diff --git a/layouts/partials/header.html b/layouts/partials/header.html index 03bf284..f328f43 100644 --- a/layouts/partials/header.html +++ b/layouts/partials/header.html @@ -36,46 +36,3 @@ </div> </div> </section> - -<section class="icons"> - <div class="container"> - <div class="content"> - - {{ if .Site.Params.github }} - <a href="https://github.com/{{ .Site.Params.github }}" target="_blank"> - <i class="icon ion-social-github" title="github"></i> - </a> - {{ end }} - - {{ if .Site.Params.twitter }} - <a href="https://twitter.com/{{ .Site.Params.twitter }}" target="_blank"> - <i class="icon ion-social-twitter" title="twitter"></i> - </a> - {{ end }} - - {{ if .Site.Params.linkedin }} - <a href="https://www.linkedin.com/in/{{ .Site.Params.linkedin }}" target="_blank"> - <i class="icon ion-social-linkedin" title="linkedin"></i> - </a> - {{ end }} - - {{ if .Site.Params.email }} - <a href="mailto:{{ .Site.Params.email }}"> - <i class="icon ion-ios-email larger" title="email"></i> - </a> - {{ end }} - - {{ if .Site.RSSLink }} - <a href="{{ .Site.RSSLink }}"> - <i class="icon ion-social-rss larger" title="rss"></i> - </a> - {{ end }} - - {{ if .Site.Params.copyright }} - </br> - <a href="{{ .Site.BaseURL }}license">{{ .Site.Params.copyright}}</a> - {{ end }} - - </div> - </div> -</section> diff --git a/static/css/main.css b/static/css/main.css index 47bf4a9..1aa0e80 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -246,44 +246,6 @@ section { max-width: 750px; } } -section.header { - -webkit-order: 0; - -moz-order: 0; - -ms-order: 0; - order: 0; -} -section.icons { - -webkit-order: 1; - -moz-order: 1; - -ms-order: 1; - order: 1; -} -section.main { - -webkit-order: 2; - -moz-order: 2; - -ms-order: 2; - order: 2; -} -@media (min-width: 600px) { - section.header { - -webkit-order: 0; - -moz-order: 0; - -ms-order: 0; - order: 0; - } - section.icons { - -webkit-order: 2; - -moz-order: 2; - -ms-order: 2; - order: 2; - } - section.main { - -webkit-order: 1; - -moz-order: 1; - -ms-order: 1; - order: 1; - } -} section.header .container { -webkit-align-items: center; -moz-align-items: center; @@ -408,7 +370,10 @@ section.header nav ul li:hover { color: #333333; } } -section.icons .container { +section.footer { + margin-top: -2em; +} +section.footer .container { -webkit-align-items: center; -moz-align-items: center; -ms-align-items: center; @@ -417,12 +382,11 @@ section.icons .container { -moz-justify-content: center; -ms-justify-content: center; justify-content: center; -} -section.icons .content { - width: auto; + flex-direction: column-reverse; + width: 100%; text-align: center; } -section.icons .content a { +section.footer .container a { font-size: 14px; margin-left: 6px; margin-right: 6px; @@ -432,43 +396,49 @@ section.icons .content a { -ms-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72); -o-transition: color 0.1s cubic-bezier(0.47, 0, 0.75, 0.72); } -section.icons .content a:first-child { +section.footer .container a:first-child { margin-left: 0; } -section.icons .content a:last-child { +section.footer .container a:last-child { margin-right: 0; } -section.icons .content a:hover { +section.footer .container a:hover { color: #111111; } -section.icons .content a .icon { +section.footer .container a .icon { font-size: 20px; } -section.icons .content a .icon.larger { +section.footer .container a .icon.larger { font-size: 22px; } +section.footer .container .copyright { + flex-grow: 0.5; + text-align: start; +} +section.footer .container .icons { + flex-grow: 0.5; + text-align: end; +} @media (min-width: 600px) { - section.icons { + section.footer { + margin-top: -1em; background-color: transparent; } - section.icons .container { - -webkit-justify-content: center; - -moz-justify-content: center; - -ms-justify-content: center; - justify-content: center; + section.footer .container { + flex-direction: row; } - section.icons .content a { + section.footer .container a { margin-left: 3px; margin-right: 3px; color: #666666; } - section.icons .content a:hover { + section.footer .container a:hover { color: #333333; } - section.icons .content a .icon { + section.footer .container a .icon { font-size: 18px; } - section.icons .content a .icon.larger { + section.footer .container a .icon.larger { font-size: 20px; } } @@ -644,7 +614,6 @@ section.header-home { } section.main { padding-top: 32px; - padding-bottom: 32px; } section.main .container .content .post-item .meta { display: block; @@ -661,12 +630,11 @@ section.main .container .content .post-item { padding-top: 60px; padding-bottom: 60px; } - section.icons { + section.footer { padding-bottom: 60px; } section.main { padding-top: 0; - padding-bottom: 0; } section.main .container .content .post-item { display: flex; From 6d97f25db2d8b82c61f595f8b9485d02e7eb2f44 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet <alexistacnet@gmail.com> Date: Sun, 26 Feb 2017 00:03:00 +0100 Subject: [PATCH 10/12] Fix a bit the style of the footer and best posts --- layouts/index.html | 2 +- static/css/main.css | 5 +---- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/layouts/index.html b/layouts/index.html index 94e632f..6173c5b 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -27,7 +27,7 @@ {{ end }} </div> - <div class="posts"> + <div class="best-posts"> {{ $nbPosts := len (where .Data.Pages "Params.best" true) }} {{ if gt $nbPosts 0 }} <div class="page-heading">Best posts</div> diff --git a/static/css/main.css b/static/css/main.css index 1aa0e80..5770fcd 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -370,9 +370,6 @@ section.header nav ul li:hover { color: #333333; } } -section.footer { - margin-top: -2em; -} section.footer .container { -webkit-align-items: center; -moz-align-items: center; @@ -421,7 +418,6 @@ section.footer .container .icons { } @media (min-width: 600px) { section.footer { - margin-top: -1em; background-color: transparent; } section.footer .container { @@ -631,6 +627,7 @@ section.main .container .content .post-item { padding-bottom: 60px; } section.footer { + padding-top: 30px; padding-bottom: 60px; } section.main { From 7311f4f9dc904a3de2d788022e2c51260a6322e4 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet <alexistacnet@gmail.com> Date: Sun, 26 Feb 2017 00:08:33 +0100 Subject: [PATCH 11/12] Fix a bit the example license --- exampleSite/content/license.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exampleSite/content/license.md b/exampleSite/content/license.md index 0c0fef9..55d8c85 100644 --- a/exampleSite/content/license.md +++ b/exampleSite/content/license.md @@ -1,5 +1,5 @@ +++ -title: "License" +title= "License" +++ You can use this page to put a license on the contents of your blog, like so: From bd6e2052d46547b806e4aabaf805f25f2ad4bb92 Mon Sep 17 00:00:00 2001 From: Alexis Tacnet <alexistacnet@gmail.com> Date: Sun, 26 Feb 2017 00:12:44 +0100 Subject: [PATCH 12/12] Add the changelog for v0.8 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 77351a1..9614de1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +> v0.8.0 + +- Add a licensing page and a copyright in the footer if wanted (thx to [Hjdskes](https://github.com/Hjdskes)) +- Fix footnotes +- Other small fixes + > v0.7.0 - Speed up a bit the theme