contentdb/app/templates/index.html

49 lines
1.3 KiB
HTML
Raw Normal View History

2018-03-18 18:43:30 +01:00
{% extends "base.html" %}
{% block title %}
2018-05-18 05:18:57 +02:00
Welcome
2018-03-18 18:43:30 +01:00
{% endblock %}
2018-05-18 01:16:10 +02:00
{% block container %}
2018-12-21 15:45:54 +01:00
<!-- <div class="jumbotron">
<h1 class="display-3">Hello, world!</h1>
<p class="lead">This is a simple hero unit, a simple jumbotron-style component for calling extra attention to featured content or information.</p>
<hr class="my-4">
<p>It uses utility classes for typography and spacing to space content out within the larger container.</p>
<p class="lead">
<a class="btn btn-primary btn-lg" href="#" role="button">Learn more</a>
</p>
</div> -->
<header class="jumbotron">
2018-05-18 01:16:10 +02:00
<div class="container">
2018-12-21 15:45:54 +01:00
<h1 class="display-3">Content DB</h1>
2018-03-21 21:10:11 +01:00
2018-05-09 19:58:09 +02:00
<p>
Minetest's official content repository.
2018-05-24 21:42:26 +02:00
Browse {{ count }} packages,
2018-11-09 11:58:39 +01:00
the majority of which are available under a free
and open source license.
2018-05-09 19:58:09 +02:00
</p>
2018-03-21 21:10:11 +01:00
2018-12-21 15:45:54 +01:00
<!-- <form method="get" action="/packages/">
2018-05-09 19:35:36 +02:00
<input type="text" name="q" value="{{ query or ''}}" />
<input type="submit" value="Search" />
2018-12-21 15:45:54 +01:00
</form> -->
2018-05-18 01:16:10 +02:00
</div>
</header>
2018-03-18 18:43:30 +01:00
2018-12-21 15:45:54 +01:00
<main class="container">
2018-05-18 02:32:34 +02:00
{% from "macros/packagegridtile.html" import render_pkggrid %}
<h2>Popular</h2>
{{ render_pkggrid(popular) }}
2018-12-21 15:45:54 +01:00
<a href="{{ url_for('packages_page') }}" class="btn">Show More</a>
<h2 style="margin-top:2em;">Newly Added</h2>
{{ render_pkggrid(new) }}
2018-05-18 01:16:10 +02:00
</main>
2018-03-18 18:43:30 +01:00
{% endblock %}