]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blob - templates/planet/search.html
planet: Add fulltext search.
[people/shoehn/ipfire.org.git] / templates / planet / search.html
1 {% extends "base.html" %}
2
3 {% block title %}{{ _("IPFire Planet") }}{% end block %}
4
5 {% block subtitle %}
6 {{ _("Search results for '%s'") % query }}</p>
7 {% end block %}
8
9 {% block body %}
10 {% if entries %}
11 {% for entry in entries %}
12 {% module PlanetEntry(entry) %}
13 {% end %}
14 {% else %}
15 <p class="lead muted ac">
16 {{ _("No results found for '%s'") % query }}
17 </p>
18 {% end %}
19 {% end block %}