diff --git a/_includes/license.html b/_includes/license.html new file mode 100644 index 00000000..f63a6b35 --- /dev/null +++ b/_includes/license.html @@ -0,0 +1,4 @@ +

Licensing

+

+ Unless otherwise noted, all content is licensed under a Creative Commons Attribution 3.0 Unported License. +

diff --git a/_layouts/post.html b/_layouts/post.html index 95ea5f94..19eab4af 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -7,6 +7,8 @@

{{ page.title }}

{{ content }} +{% include license.html %} +
{% assign author = site.data.authors[page.meta.author] %} {% if author %} diff --git a/about.html b/about.html index b0ddaf7d..afe0d434 100644 --- a/about.html +++ b/about.html @@ -45,10 +45,7 @@

Code of Conduct

{{ conduct | markdownify }}
-

Licensing

-

- Unless otherwise noted, all content is licensed under a Creative Commons Attribution 3.0 Unported License. -

+{% include license.html %}

Images

diff --git a/blog/feed.rss b/blog/feed.rss index ba2de81b..44253af3 100644 --- a/blog/feed.rss +++ b/blog/feed.rss @@ -7,17 +7,14 @@ layout: empty {{ site.name | xml_escape }} {% if site.description %}{{ site.description | xml_escape }}{% endif %} {{ site.baseurl }} - {% for post in site.posts limit:10 %} + CC BY 3.0 + {% for post in site.posts %} {{ post.title | xml_escape }} - {% if post.author.name %} - {{ post.author.name | xml_escape }} + {% if post.meta.author %} + {{ post.meta.author | xml_escape }} {% endif %} - {% if post.excerpt %} - {{ post.excerpt | xml_escape }} - {% else %} - {{ post.content | xml_escape }} - {% endif %} + {{ post.date | date_to_rfc822 }} {{ site.baseurl }}{{ post.url }} {{ site.baseurl }}{{ post.url }}