By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.

Dismiss

 search.html

View raw Download
text/html • 1.25 kiB
HTML document, ASCII text
        
            
1
{% extends "default.html" %}
2
3
{% block title %}
4
{% trans username=username, repository=repository %}Repository listing: {{ query }}{% endtrans %}
5
{% endblock %}
6
{% block content %}
7
<x-vbox>
8
<x-frame style="--width: 896px;" class="flexible-space">
9
<ul style="list-style: none;" class="noindent">
10
{% for result in results %}
11
<li>
12
<article class="card" style="flex: 0 1 auto;">
13
<section class="card-main">
14
<a href="{{ result.route }}"><h3>{{ result.name }}</h3></a>
15
{% if result.info %}
16
<p>{{ result.info }}</p>
17
{% endif %}
18
{% if result.url %}
19
<p>
20
Homepage: <a href="{{ result.url }}">{{ result.url }}</a>
21
</p>
22
{% endif %}
23
</section>
24
</article>
25
</li>
26
{% endfor %}
27
</ul>
28
{% include "pagination.html" %}
29
</x-frame>
30
</x-vbox>
31
{% endblock %}