This repository has been archived on 2023-10-01. You can view files and clone it, but cannot push or open issues or pull requests.
PyNyaaTa/pynyaata/templates/index.html.j2

21 lines
889 B
Plaintext
Raw Normal View History

2023-01-01 11:13:32 +00:00
{% extends "layout.html.j2" %}
{% block body %}
2023-01-01 23:44:48 +00:00
<section class="hero is-fullheight-with-navbar">
2023-01-04 14:43:20 +00:00
<div class="hero-body m-auto is-flex-direction-column is-justify-content-center">
<p class="title mb-6 is-size-1">{{ _("𝚷😼た") }}</p>
2023-01-04 13:40:19 +00:00
<form action="{{ url_for('index') }}" class="subtitle">
2023-01-04 13:40:07 +00:00
<div class="field has-addons">
<div class="control">
{{ search_form.q(placeholder=_("Search animes ..."), class="input", value=request.args.get("q", "")) }}
</div>
<div class="control">
<button type="submit" class="button">
<i class="fa fa-search"></i>
</button>
</div>
</div>
</form>
2023-01-01 23:44:48 +00:00
</div>
</section>
2023-01-01 11:13:32 +00:00
{% endblock body %}