summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/views/layout.ecr5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/views/layout.ecr b/src/views/layout.ecr
index 1c068350..cf26da3f 100644
--- a/src/views/layout.ecr
+++ b/src/views/layout.ecr
@@ -29,8 +29,9 @@
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-3">
<a href="/feed/subscriptions" class="pure-menu-heading">
- <% if env.get("notifications").as(Int32) > 0 %>
- <center><i class="fas fa-bell"></i></center>
+ <% notifications = env.get("notifications").as(Int32) %>
+ <% if notifications > 0 %>
+ <center><%= notifications %> <i class="fas fa-bell"></i></center>
<% else %>
<center><i class="far fa-bell"></i></center>
<% end %>