]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/search.html
Update modules templates
[people/shoehn/ipfire.org.git] / templates / planet / search.html
CommitLineData
2bdd073f
MT
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 %}
00b02c49 15 <p class="lead text-muted ac">
2bdd073f
MT
16 {{ _("No results found for '%s'") % query }}
17 </p>
18 {% end %}
19{% end block %}