summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_layouts/post.html2
-rw-r--r--blog.html2
-rw-r--r--style.css1
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 }}
diff --git a/blog.html b/blog.html
index bb579b1..ebe4184 100644
--- a/blog.html
+++ b/blog.html
@@ -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 %}
diff --git a/style.css b/style.css
index 17816a6..8f3058d 100644
--- a/style.css
+++ b/style.css
@@ -54,7 +54,6 @@ ul.navbar {
li.list-blog{
text-decoration: none;
- float: left;
display: block;
}