diff --git a/webapp_post.py b/webapp_post.py
index e11a0e225..09368de6f 100644
--- a/webapp_post.py
+++ b/webapp_post.py
@@ -2184,6 +2184,23 @@ def individual_post_as_html(signing_priv_key_pem: str,
actor_nickname = 'dev'
actor_domain, _ = get_domain_from_actor(post_actor)
+ # scope icon before display name
+ if is_followers_post(post_json_object):
+ title_str += \
+ '
\n'
+ elif is_unlisted_post(post_json_object):
+ title_str += \
+ '
\n'
+ elif is_reminder(post_json_object):
+ title_str += \
+ '
\n'
+
display_name = get_display_name(base_dir, post_actor, person_cache)
if display_name:
if len(display_name) < 2 or \