diff options
-rw-r--r-- | _includes/common/sidebar.html | 9 | ||||
-rw-r--r-- | css/common/misc.css | 8 | ||||
-rw-r--r-- | index.html | 15 |
3 files changed, 17 insertions, 15 deletions
diff --git a/_includes/common/sidebar.html b/_includes/common/sidebar.html index 4637244..51c835e 100644 --- a/_includes/common/sidebar.html +++ b/_includes/common/sidebar.html @@ -1,16 +1,19 @@ -<h4>About the project</h4> +<h2 class="h4">About the project</h2> <p>{{ site.project.description }}. Feel free to contribute or contact me.</p> <div class="list-group wide-enough"> <a class="list-group-item" href="{{ site.github.repository_url }}"><span class="glyphicon glyphicon-home"></span> GitHub repository</a> <a class="list-group-item" href="mailto:{{ site.personal_info.email }}"><span class="glyphicon glyphicon-envelope"></span> {{ site.personal_info.email }}</a> </div> -<h4>Latest posts</h4> +<h2 class="h4">Latest posts</h2> {% if site.posts.size == 0 %} <p>Sorry, there're no posts yet.</p> {% else %} <div class="list-group wide-enough"> {% for post in site.posts limit: 5 %} - <a class="list-group-item" href="{{ site.baseurl }}{{ post.url }}"><span class="badge"><span class="glyphicon glyphicon-time"></span> {{ post.date | date_to_string }}</span><span class="glyphicon glyphicon-file"></span> {{ post.title }}</a> + <a class="list-group-item" href="{{ site.baseurl }}{{ post.url }}"> + <span class="badge"><span class="glyphicon glyphicon-time"></span> {{ post.date | date_to_string }}</span> + <span class="glyphicon glyphicon-file"></span> {{ post.title }} + </a> {% endfor %} </div> {% endif %} diff --git a/css/common/misc.css b/css/common/misc.css index c6cbd9d..617aced 100644 --- a/css/common/misc.css +++ b/css/common/misc.css @@ -4,3 +4,11 @@ .wider { max-width: 600px; } +h1 a, +h2 a, +h3 a, +h4 a, +h5 a, +h6 a { + color: inherit; +} @@ -6,22 +6,13 @@ groups: navbar_link: <span class="glyphicon glyphicon-home"></span> 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 <span class="glyphicon glyphicon-chevron-right"></span></a> - </div> - <div class="text-muted" style="text-align: right; display: table-cell;"> - <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"> |