diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-03-17 16:10:26 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-03-17 16:10:26 +0300 |
commit | d66d38aa50df44533ea8ba8347a9f4a8713eebf0 (patch) | |
tree | 4276acf7701619a1fdf6365a1a066563b73759a6 /templates/weblog.html | |
parent | a9e50293dceb237d665ba56903d414f5302ca4ff (diff) | |
download | yaroslavps.com-d66d38aa50df44533ea8ba8347a9f4a8713eebf0.tar.gz yaroslavps.com-d66d38aa50df44533ea8ba8347a9f4a8713eebf0.zip |
image sizes correction; paginator style
Diffstat (limited to 'templates/weblog.html')
-rw-r--r-- | templates/weblog.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/templates/weblog.html b/templates/weblog.html index 88abf61..7a6038b 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -17,12 +17,12 @@ {% if paginator.number_pagers > 1 %} <div class="paginator"> {% if paginator.previous %} - <a href="{{ paginator.first }}">First</a> - <a href="{{ paginator.previous }}">Previous page: {{ paginator.current_index - 1 }}</a> + <a href="{{ paginator.first }}"><span class="icon"></span> First</a> + <a href="{{ paginator.previous }}"><span class="icon"></span> Page {{ paginator.current_index - 1 }}</a> {% endif %} {% if paginator.next %} - <a href="{{ paginator.next }}">Next page: {{ paginator.current_index + 1 }}</a> - <a href="{{ paginator.last }}">Last</a> + <a href="{{ paginator.next }}">Page {{ paginator.current_index + 1 }} <span class="icon"></span></a> + <a href="{{ paginator.last }}">Last <span class="icon"></span></a> {% endif %} </div> {% endif %} |