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

 home.html

View raw Download
text/plain • 640 B
ASCII text
        
            
1
{% extends "default.html" %}
2
{% block title %}
3
{% trans %}Home{% endtrans %}
4
{% endblock %}
5
{% block breadcrumbs %}
6
{% endblock %}
7
8
{% block nav %}
9
{% endblock %}
10
11
{% block content %}
12
<x-frame style="--width: 896px; --padding: 1em">
13
<h1>{{ config.site_name }}</h1>
14
<h2>{% trans %}Search{% endtrans %}</h2>
15
<form action="/search" method="get" role="search" class="buttonbox">
16
<input type="text" name="q" placeholder="{% trans %}Search repositories...{% endtrans %}" required>
17
<button type="submit">{% trans %}Search{% endtrans %}</button>
18
</form>
19
</x-frame>
20
{% endblock %}
21