]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/planet/search.html
Massive web site update
[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
60b0917c
MT
5{% block container %}
6 <div class="page-header container">
7 <h1>{{ _("Search results for '%s'") % query }}</h1>
8 </div>
fa7e1a0a 9
60b0917c
MT
10 <section class="container context-section text-center">
11 {% module PlanetSearchBox(query=query) %}
12 </section>
fa7e1a0a 13
2bdd073f
MT
14 {% if entries %}
15 {% for entry in entries %}
16 {% module PlanetEntry(entry) %}
17 {% end %}
18 {% else %}
00b02c49 19 <p class="lead text-muted ac">
2bdd073f
MT
20 {{ _("No results found for '%s'") % query }}
21 </p>
22 {% end %}
23{% end block %}