diff --git a/apps/rp/templates/rp/article_list_public.html b/apps/rp/templates/rp/article_list_public.html
index 05b3b54b8daa7c4f65c9a542298b3129f23ac25c..0086be8ca1b90bf6636103380dd95d8ac91eeabd 100644
--- a/apps/rp/templates/rp/article_list_public.html
+++ b/apps/rp/templates/rp/article_list_public.html
@@ -67,7 +67,7 @@
diff --git a/apps/rp/views/articles.py b/apps/rp/views/articles.py
index 466185d1939dcc1d95ae35a444c41a09b869c17f..2bf00f60ee488e94e6ecf4bb156ee3a60c7b2fc2 100644
--- a/apps/rp/views/articles.py
+++ b/apps/rp/views/articles.py
@@ -52,6 +52,7 @@ class ArticleList(ListView):
qs = Tag.objects.annotate(num_times=Count('taggit_taggeditem_items')).all()
qs = qs.order_by('-num_times')
context["tags"] = qs
+ context["search"] = self.request.GET.get('q', '')
return context