From c1d8cf6943bb06fd74b404bd705d45b301f25835 Mon Sep 17 00:00:00 2001 From: Bat Date: Wed, 5 Sep 2018 16:56:23 +0100 Subject: [PATCH] Update notification icons to use Feather --- templates/notifications/index.html.tera | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/notifications/index.html.tera b/templates/notifications/index.html.tera index ef0135a..3c2d174 100644 --- a/templates/notifications/index.html.tera +++ b/templates/notifications/index.html.tera @@ -11,7 +11,7 @@ {% for notification in notifications %}
{% if notification.kind == "COMMENT" %} - +

{{ "{{ user }} commented your article." | _(user=notification.object.user.name | escape) }} @@ -21,7 +21,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "FOLLOW" %} - +

{{ "{{ user }} is now following you." | _(user=notification.object.follower.name | escape) }} @@ -30,7 +30,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "LIKE" %} - +

{{ "{{ user }} liked your article." | _(user=notification.object.user.name | escape) }} @@ -40,7 +40,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "MENTION" %} - +

{{ "{{ user }} mentioned you." | _(user=notification.object.user.name | escape) }} @@ -49,7 +49,7 @@

{{ notification.creation_date | date(format="%B %e, %H:%M") }}

{% elif notification.kind == "RESHARE" %} - +

{{ "{{ user }} boosted your article." | _(user=notification.object.user.name | escape) }}