diff options
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 06673ee..253f79e 100644 --- a/templates/weblog.html +++ b/templates/weblog.html @@ -35,12 +35,12 @@ {% if paginator.number_pagers > 1 %} <div class="paginator"> {% if paginator.previous %} - <a href="{{ paginator.first }}"><span class="icon"></span> First</a> - <a href="{{ paginator.previous }}"><span class="icon"></span> 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 }}">Page {{ paginator.current_index + 1 }} <span class="icon"></span></a> - <a href="{{ paginator.last }}">Last <span class="icon"></span></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 %} |