diff --git a/app/views/data/tags.html.erb b/app/views/data/tags.html.erb
index 255c5758..133d5039 100644
--- a/app/views/data/tags.html.erb
+++ b/app/views/data/tags.html.erb
@@ -1,3 +1,7 @@
+<%
+ showed_any_tags = false
+%>
+
Your Notebook.ai tags
<% Rails.application.config.content_types[:all].each do |content_type| %>
@@ -5,6 +9,8 @@
grouped_tags = PageTag.where(page_type: content_type.name, user_id: current_user).group_by(&:tag)
next if grouped_tags.values.length == 0
+
+ showed_any_tags = true
%>
-
@@ -39,7 +45,7 @@
slug: PageTagService.slug_for(tag)
), data: {
confirm: "Are you sure? This will delete this tag and remove it from all pages."
- }
+ }, class: 'red-text'
%>
@@ -64,4 +70,10 @@
<% end %>
-
\ No newline at end of file
+
+
+<% if !showed_any_tags %>
+
+ When you create tags for your pages, they'll appear here. Come back later when you've added some!
+
+<% end %>
\ No newline at end of file