diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-10-02 02:09:59 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-10-02 02:09:59 +0300 |
commit | ec29bebbda2a278e78da1a0f91bd7a8e100d5dd7 (patch) | |
tree | 77d0d4e47ea085db02405530b6fe3885e7fd7c31 /templates/weblog.html | |
parent | 358c7b06be5ac06de4cc10c85093ffac8044458a (diff) | |
download | yaroslavps.com-ec29bebbda2a278e78da1a0f91bd7a8e100d5dd7.tar.gz yaroslavps.com-ec29bebbda2a278e78da1a0f91bd7a8e100d5dd7.zip |
Style changes
Mainly changes to the color palette of the site, but also added a
background image and increased the maximum width of the main container.
Also added separate links for the RSS feeds of the weblog and recipe
book.
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 %} |