mention the blog's name in posts' footer
authorRalf Jung <post@ralfj.de>
Sat, 2 Jan 2016 20:14:47 +0000 (21:14 +0100)
committerRalf Jung <post@ralfj.de>
Sat, 2 Jan 2016 20:15:01 +0000 (21:15 +0100)
ralf/_includes/post-header.html
ralf/_includes/post-list.html
ralf/_layouts/post.html

index 435447b48ad0fd26bbdd6a3fa98df2f48ceeada5..0d98fd8bf06bfef81213a0fe5dc3b83d3012aa70 100644 (file)
@@ -1,6 +1,5 @@
-<div class="side">{{ include.item.date | date: "%b %-d, %Y" }}
-    {% if include.item.author %} • {{ include.item.author }}{% endif %}
-    {% if include.item.meta %} • {{ include.item.meta }}{% endif %}
-    {% if include.item.categories %}  • {{ include.item.categories | category_links }}{% endif %}
-     • <a href="{{ include.item.url }}">Permalink</a>
-</div>
+{{ include.item.date | date: "%b %-d, %Y" }}
+{% if include.item.author %} • {{ include.item.author }}{% endif %}
+{% if include.item.meta %} • {{ include.item.meta }}{% endif %}
+{% if include.item.categories %}  • {{ include.item.categories | category_links }}{% endif %}
+ • <a href="{{ include.item.url }}">Permalink</a>
index 0db845a190db04048b112dada39645cf30a7bfcb..62943548455f405e24632708557ad401391c1c31 100644 (file)
@@ -1,6 +1,6 @@
 {% for post in include.posts %}
     <header class="subtitle">
 {% for post in include.posts %}
     <header class="subtitle">
-      {% include post-header.html item=post %}
+      <div class="side">{% include post-header.html item=post %}</div>
       <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
     </header>
     {{ post.excerpt }}
       <h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
     </header>
     {{ post.excerpt }}
index 8865214baf3774c0ca4bd1a6a5559ed1aa49379b..ee717fbc4d8ef37047a047b55daada0b4a9b5004 100644 (file)
@@ -3,10 +3,13 @@ layout: default
 ---
 
 <header class="title">
 ---
 
 <header class="title">
-    {% include post-header.html item=page %}
+    <div class="side">{% include post-header.html item=page %}</div>
     <h1>{{ page.title }}</h1>
 </header>
 
 {{ content }}
 
     <h1>{{ page.title }}</h1>
 </header>
 
 {{ content }}
 
-<p class="comment">Comments? <a href="mailto:post-AT-ralfj-DOT-de">Drop me a mail</a>{% if page.reddit %} or <a href="https://www.reddit.com/r{{ page.reddit }}">leave a note on reddit</a>{% endif %}!</p>
+<p class="comment">
+    Posted on <a href="{{ site.baseurl}}/blog">{{ site.blog.title }}</a> on {{ page.date | date: "%b %-d, %Y" }}. <br>
+    Comments? <a href="mailto:post-AT-ralfj-DOT-de">Drop me a mail</a>{% if page.reddit %} or <a href="https://www.reddit.com/r{{ page.reddit }}">leave a note on reddit</a>{% endif %}!
+</p>