diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-18 22:05:21 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2022-04-18 22:05:21 +0200 |
commit | 381660a82469c27bc45767bb124252f8390a43ce (patch) | |
tree | 04c6b0e6a762aaa5885071c36656234830b55462 | |
parent | paginator: 0 bottom margin (diff) | |
download | jekyll-theme-381660a82469c27bc45767bb124252f8390a43ce.tar.gz jekyll-theme-381660a82469c27bc45767bb124252f8390a43ce.zip |
paginator: just arrows instead of words
-rw-r--r-- | _includes/jekyll-theme/posts/paginator.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/jekyll-theme/posts/paginator.html b/_includes/jekyll-theme/posts/paginator.html index f61bc0b..257a307 100644 --- a/_includes/jekyll-theme/posts/paginator.html +++ b/_includes/jekyll-theme/posts/paginator.html @@ -5,8 +5,8 @@ {% if site.posts.size != 0 %} - {% capture prev %}<span class="glyphicon glyphicon-chevron-left"></span> Prev{% endcapture %} - {% capture next %}Next <span class="glyphicon glyphicon-chevron-right"></span>{% endcapture %} + {% capture prev %}<span class="glyphicon glyphicon-chevron-left"></span>{% endcapture %} + {% capture next %}<span class="glyphicon glyphicon-chevron-right"></span>{% endcapture %} {% comment %} Link to page 1 is tricky. If site.paginate_path is used, then we cannot |