contentdb/app/templates/index.html

34 lines
706 B
HTML
Raw Normal View History

2018-03-18 10:43:30 -07:00
{% extends "base.html" %}
{% block title %}
2018-05-17 20:18:57 -07:00
Welcome
2018-03-18 10:43:30 -07:00
{% endblock %}
2018-05-17 16:16:10 -07:00
{% block container %}
2018-12-21 06:45:54 -08:00
<header class="jumbotron">
2018-05-17 16:16:10 -07:00
<div class="container">
2018-12-21 07:58:43 -08:00
<h1 class="display-3">{{ config.USER_APP_NAME }}</h1>
2018-03-21 13:10:11 -07:00
2018-12-21 07:58:43 -08:00
<p class="lead">
2018-05-09 10:58:09 -07:00
Minetest's official content repository.
2018-05-24 12:42:26 -07:00
Browse {{ count }} packages,
2018-11-09 02:58:39 -08:00
the majority of which are available under a free
and open source license.
2018-05-09 10:58:09 -07:00
</p>
2018-05-17 16:16:10 -07:00
</div>
</header>
2018-03-18 10:43:30 -07:00
2018-12-21 06:45:54 -08:00
<main class="container">
2018-05-17 17:32:34 -07:00
{% from "macros/packagegridtile.html" import render_pkggrid %}
<h2>Popular</h2>
{{ render_pkggrid(popular) }}
2018-12-21 06:45:54 -08: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-17 16:16:10 -07:00
</main>
2018-03-18 10:43:30 -07:00
{% endblock %}