contentdb/app/templates/index.html

34 lines
706 B
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
<header class="jumbotron">
2018-05-18 01:16:10 +02:00
<div class="container">
2018-12-21 16:58:43 +01:00
<h1 class="display-3">{{ config.USER_APP_NAME }}</h1>
2018-03-21 21:10:11 +01:00
2018-12-21 16:58:43 +01:00
<p class="lead">
2018-05-09 19:58:09 +02:00
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-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 %}