diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2018-02-18 06:32:25 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2018-02-18 06:32:25 +0300 |
commit | fc26f83dd0048a2010927a3b2e2585bf368fa2fa (patch) | |
tree | e89a71c5eb02c3c7db23a454f365c5e5c8c9605e | |
parent | don't zero-pad day number in dates (diff) | |
download | sorting-algorithms-fc26f83dd0048a2010927a3b2e2585bf368fa2fa.tar.gz sorting-algorithms-fc26f83dd0048a2010927a3b2e2585bf368fa2fa.zip |
add missing s
-rw-r--r-- | _includes/common/sidebar.html | 2 | ||||
-rw-r--r-- | _layouts/post.html | 2 | ||||
-rw-r--r-- | posts/index.html | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/_includes/common/sidebar.html b/_includes/common/sidebar.html index 991beee..3300b17 100644 --- a/_includes/common/sidebar.html +++ b/_includes/common/sidebar.html @@ -1,6 +1,6 @@ <div class="row"> <div class="col-xs-12 col-sm-6 col-md-12"> - <h2 class="h4">About the project</h2> + <h2 class="h4">About</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> diff --git a/_layouts/post.html b/_layouts/post.html index b10a923..faed6d4 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,7 +2,7 @@ <div class="row"> <div class="col-md-8"> <h1>{{ page.title }}</h1> - <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ page.date | date: '%-d %B %Y' }}</p> + <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ page.date | date: '%-d %B %Y' }}</p> {{ content }} <hr/> </div> diff --git a/posts/index.html b/posts/index.html index a18beb6..f787c9e 100644 --- a/posts/index.html +++ b/posts/index.html @@ -13,7 +13,7 @@ root_page: true {% else %} {% for post in paginator.posts %} <h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2> - <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date: '%-d %B %Y' }}</p> + <p class="text-muted"><span class="glyphicon glyphicon-time"></span> Posted on {{ post.date | date: '%-d %B %Y' }}</p> <p>{{ post.excerpt }}</p> <hr/> {% endfor %} |