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 @@