aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/index.html
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2016-11-27 15:39:39 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2016-11-27 15:39:39 +0300
commit24be0ba3c2d29fd0318b427019dc7e05f3b97caa (patch)
tree95290939b50922df869d78ec7bd86819bf7238d7 /index.html
parentadjust Gemfiles for Cygwin (diff)
downloadjekyll-theme-24be0ba3c2d29fd0318b427019dc7e05f3b97caa.tar.gz
jekyll-theme-24be0ba3c2d29fd0318b427019dc7e05f3b97caa.zip
fix markup semantics
Diffstat (limited to '')
-rw-r--r--index.html15
1 files changed, 3 insertions, 12 deletions
diff --git a/index.html b/index.html
index 5e30871..7246de2 100644
--- a/index.html
+++ b/index.html
@@ -6,22 +6,13 @@ groups:
navbar_link: <span class="glyphicon glyphicon-home"></span>&nbsp;Main page
---
{% if site.posts.size == 0 %}
- <h3>Sorry, no posts have been added yet.</h3>
+ <p class="h3">Sorry, no posts have been added yet.</p>
<hr/>
{% else %}
{% for post in paginator.posts %}
- <h2>{{ post.title }}</h2>
+ <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
<p>{{ post.excerpt }}</p>
- <div style="display: table; width: 100%;">
- <div style="display: table-row;">
- <div style="display: table-cell;">
- <a class="btn btn-primary" href="{{ site.baseurl }}{{ post.url }}">Read More&nbsp;<span class="glyphicon glyphicon-chevron-right"></span></a>
- </div>
- <div class="text-muted" style="text-align: right; display: table-cell;">
- &nbsp;<span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date_to_long_string }}
- </div>
- </div>
- </div>
+ <p class="text-muted" style="text-align: right;"><span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date_to_long_string }}</p>
<hr/>
{% endfor %}
<div class="text-center">