From 6d912de3764b22b6d4ea6fc6e0e243ecb395e2b4 Mon Sep 17 00:00:00 2001 From: Danielle McLean Date: Wed, 6 Dec 2017 14:07:59 +1100 Subject: [PATCH] Migrate to Font Awesome 5 - every icon used in the site has been updated, but the site icons that live in the database will need fixing separately --- entries/kinds.py | 12 ++++++------ entries/templates/entries/h-entry.html | 8 ++++---- home/templates/home/index.html | 4 ++-- lemonauth/templates/lemonauth/indie.html | 6 +++--- lemonauth/templates/lemonauth/login.html | 2 +- lemoncurry/templates/lemoncurry/layout.html | 2 +- lemoncurry/templatetags/lemoncurry_tags.py | 6 +++--- 7 files changed, 20 insertions(+), 20 deletions(-) diff --git a/entries/kinds.py b/entries/kinds.py index f0cade7..e55ddc6 100644 --- a/entries/kinds.py +++ b/entries/kinds.py @@ -25,41 +25,41 @@ class Entry: Note = Entry( id='note', - icon='fa fa-paper-plane', + icon='fas fa-paper-plane', plural='notes', ) Article = Entry( id='article', - icon='fa fa-file-text', + icon='fas fa-file-alt', plural='articles', slug=True, ) Photo = Entry( id='photo', - icon='fa fa-camera', + icon='fas fa-camera', plural='photos', ) Reply = Entry( id='reply', - icon='fa fa-comment', + icon='fas fa-comment', plural='replies', on_home=False, ) Like = Entry( id='like', - icon='fa fa-heart', + icon='fas fa-heart', plural='likes', on_home=False, ) Repost = Entry( id='repost', - icon='fa fa-retweet', + icon='fas fa-retweet', plural='reposts', ) diff --git a/entries/templates/entries/h-entry.html b/entries/templates/entries/h-entry.html index 7dcf043..a92baa2 100644 --- a/entries/templates/entries/h-entry.html +++ b/entries/templates/entries/h-entry.html @@ -25,17 +25,17 @@ {% if entry.updated != entry.published %} {% shortlink entry as short %} - + {{ short | friendly_url }} {% endif %} @@ -45,7 +45,7 @@