]> git.ipfire.org Git - ipfire.org.git/blob - src/templates/people/search.html
location: Add list of well-known users
[ipfire.org.git] / src / templates / people / search.html
1 {% extends "../base.html" %}
2
3 {% block title %}{{ _("Search Results for \"%s\"") % q }}{% end block %}
4
5 {% block content %}
6 <div class="row justify-content-center">
7 <div class="col col-md-8">
8 <h1>{{ _("Search Results for \"%s\"") % q }}</h1>
9
10 {% if accounts %}
11 {% module AccountsList(accounts) %}
12 {% else %}
13 <p class="text-muted text-center my-5">
14 {{ _("There are no results for \"%s\"") % q }}
15 </p>
16 {% end %}
17 </div>
18 </div>
19 {% end block %}