diff --git a/_config.yml b/_config.yml index 099c6c44..14964505 100644 --- a/_config.yml +++ b/_config.yml @@ -8,7 +8,9 @@ gems: permalink: pretty # Setup -author: "Alexander Gude" +author: + name: "Alexander Gude" + title: "Alex Gude" tagline: "Data Scientist" description: "The home page and blog of Alexander Gude" diff --git a/_includes/head.html b/_includes/head.html index 2826beeb..1ea68962 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,10 +1,8 @@ - - - + {% if page.title == "Home" %} @@ -76,8 +74,8 @@ - + - + diff --git a/_includes/sidebar.html b/_includes/sidebar.html index 9ea389ef..db58017b 100644 --- a/_includes/sidebar.html +++ b/_includes/sidebar.html @@ -1,35 +1,33 @@ - + diff --git a/_layouts/default.html b/_layouts/default.html index c99f6e63..1ded3b5c 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -1,5 +1,5 @@ - + {% include head.html %} @@ -7,9 +7,9 @@ {% include sidebar.html %} -
+
{{ content }} -
+ diff --git a/_layouts/page.html b/_layouts/page.html index 4e0d4ebf..960f7678 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -2,7 +2,7 @@ layout: default --- -
+

{{ page.title }}

{{ content }} -
+ diff --git a/_layouts/post.html b/_layouts/post.html index 60371484..467885c4 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,28 +2,30 @@ layout: default --- -
+

{{ page.title }}

- + {{ content }} -
+ - - +{% if site.related_posts != empty %} + + +{% endif %} {% include share.html %} diff --git a/atom.xml b/atom.xml index 96c9681c..21026db7 100644 --- a/atom.xml +++ b/atom.xml @@ -6,19 +6,18 @@ layout: null {{ site.title }} - - + + {{ site.time | date_to_xmlschema }} {{ site.url }} {{ site.author.name }} - {{ site.author.email }} {% for post in site.posts %} - {{ post.title }} - + {{ post.title | xml_escape }} + {{ post.date | date_to_xmlschema }} {{ site.url }}{{ post.id }} {{ post.content | xml_escape }} diff --git a/blog/index.html b/blog/index.html index 95e8517a..c166d100 100644 --- a/blog/index.html +++ b/blog/index.html @@ -5,30 +5,28 @@
{% for post in paginator.posts %} -
-

- - {{ post.title }} - -

+
+

+ + {{ post.title }} + +

- + - {{ post.content }} -
+ {{ post.content }} + {% endfor %}