diff --git a/source/_includes/custom/header.html b/source/_includes/custom/header.html new file mode 100644 index 0000000..35f9c05 --- /dev/null +++ b/source/_includes/custom/header.html @@ -0,0 +1,6 @@ +
+

{{ site.title }}

+ {% if site.subtitle %} +

{{ site.subtitle }}

+ {% endif %} +
diff --git a/source/_includes/header.html b/source/_includes/header.html index 35f9c05..524de65 100644 --- a/source/_includes/header.html +++ b/source/_includes/header.html @@ -1,6 +1 @@ -
-

{{ site.title }}

- {% if site.subtitle %} -

{{ site.subtitle }}

- {% endif %} -
+{% include custom/header.html %} diff --git a/source/atom.xml b/source/atom.xml index 3b4e661..693f397 100644 --- a/source/atom.xml +++ b/source/atom.xml @@ -4,7 +4,7 @@ layout: nil - {{ site.blog_title }} + {{ site.title }} {{ site.time | date_to_xmlschema }} @@ -16,13 +16,13 @@ layout: nil {% endif %} - {% for post in site.posts %} + {% for post in site.posts limit: 20 %} {{ post.title }} {{ post.date | date_to_xmlschema }} {{ site.url }}{{ post.id }} - {{ post.content | full_urls: site.url | xml_escape }} + {{ post.content | expand_urls: site.url | xml_escape }} {% endfor %}