diff --git a/app/templates/topics/topic.html b/app/templates/topics/topic.html
index e1b791a..eeb1e8a 100644
--- a/app/templates/topics/topic.html
+++ b/app/templates/topics/topic.html
@@ -1,5 +1,5 @@
-{% from 'common/macros.html' import pager, timestamp, bookmark_button %}
-{% from 'common/icons.html' import icn_bookmark, icn_lock, icn_sticky %}
+{% from 'common/macros.html' import pager, timestamp %}
+{% from 'common/icons.html' import icn_lock, icn_sticky %}
{% extends "base.html" %}
{% block title %}browsing topic {{ topic['name'] }}{% endblock %}
{% block content %}
@@ -51,11 +51,6 @@
Started by {{ thread['started_by'] }} on {{ timestamp(thread['created_at']) }}
-
- {% if active_user and not active_user.is_guest() -%}
- {{ bookmark_button(type="thread", id=thread.id) }}
- {%- endif %}
-
Latest post by {{ thread['latest_post_username'] }}