]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/talk/search.html
Rename accounts.ipfire.org to people.ipfire.org
[ipfire.org.git] / src / templates / talk / search.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("Search Results for \"%s\"") % q }}{% end block %}
4
5 {% block main %}
6 <h3 class="mb-4">{{ _("Search Results for \"%s\"") % q }}</h3>
7
8 {% if accounts %}
9 {% module TalkAccountsList(accounts) %}
10 {% else %}
11 <p class="text-muted text-center my-5">
12 {{ _("There are no results for \"%s\"") % q }}
13 </p>
14 {% end %}
15 {% end block %}