diff options
| -rw-r--r-- | _layouts/post.html | 2 | ||||
| -rw-r--r-- | blog.html | 2 | ||||
| -rw-r--r-- | style.css | 1 |
3 files changed, 2 insertions, 3 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index a9edd82..d741573 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -10,7 +10,7 @@ {% include navigator.html %} <h1>{{ page.title }}</h1> - <p><b>{{ page.date | date_to_string }} | {{ page.author }}</b></p> + <p><b>{{ page.date | date_to_string }} | By: {{ page.author }}</b></p> {{ content }} @@ -15,9 +15,9 @@ project: Silicon Linux {% for post in site.posts %} <li class="list-blog"> <h2><a href="{{ post.url }}">{{ post.title }}</a></h2> + <p><b>{{ post.date | date_to_string }} | By: {{ post.author }}</b></p> <p>{{ post.excerpt }}</p> </li> - <br> {% endfor %} </ul> {% include footer.html %} @@ -54,7 +54,6 @@ ul.navbar { li.list-blog{ text-decoration: none; - float: left; display: block; } |
