2018-03-18 17:43:30 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
{% block title %}
|
2018-05-18 04:18:57 +01:00
|
|
|
Welcome
|
2018-03-18 17:43:30 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2018-12-22 21:03:01 +00:00
|
|
|
{% block content %}
|
|
|
|
<!-- <header class="jumbotron">
|
2018-05-18 00:16:10 +01:00
|
|
|
<div class="container">
|
2018-12-21 15:58:43 +00:00
|
|
|
<h1 class="display-3">{{ config.USER_APP_NAME }}</h1>
|
2018-03-21 20:10:11 +00:00
|
|
|
|
2018-12-21 15:58:43 +00:00
|
|
|
<p class="lead">
|
2018-05-09 18:58:09 +01:00
|
|
|
Minetest's official content repository.
|
2018-05-24 20:42:26 +01:00
|
|
|
Browse {{ count }} packages,
|
2018-11-09 16:28:39 +05:30
|
|
|
the majority of which are available under a free
|
|
|
|
and open source license.
|
2018-05-09 18:58:09 +01:00
|
|
|
</p>
|
2018-05-18 00:16:10 +01:00
|
|
|
</div>
|
|
|
|
</header>
|
2018-03-18 17:43:30 +00:00
|
|
|
|
2018-12-22 21:03:01 +00:00
|
|
|
<main class="container"> -->
|
2018-05-18 01:32:34 +01:00
|
|
|
{% from "macros/packagegridtile.html" import render_pkggrid %}
|
2018-07-04 01:05:32 +01:00
|
|
|
|
2018-12-22 21:03:01 +00:00
|
|
|
|
|
|
|
<a href="{{ url_for('packages_page', sort='created_at', order='desc') }}" class="btn btn-secondary float-right">
|
|
|
|
See more
|
|
|
|
</a>
|
2018-12-22 21:41:30 +00:00
|
|
|
<h2 class="my-3">Recently Added</h2>
|
2018-12-22 21:03:01 +00:00
|
|
|
{{ render_pkggrid(new) }}
|
|
|
|
|
|
|
|
|
2018-12-22 21:41:30 +00:00
|
|
|
<a href="{{ url_for('packages_page', type='mod', sort='score', order='desc') }}" class="btn btn-secondary float-right">
|
2018-12-22 21:03:01 +00:00
|
|
|
See more
|
|
|
|
</a>
|
2018-12-22 21:41:30 +00:00
|
|
|
<h2 class="my-3">Top Mods</h2>
|
|
|
|
{{ render_pkggrid(pop_mod) }}
|
2018-07-04 01:20:55 +01:00
|
|
|
|
|
|
|
|
2018-12-22 21:13:56 +00:00
|
|
|
<a href="{{ url_for('packages_page', type='game', sort='score', order='desc') }}" class="btn btn-secondary float-right">
|
|
|
|
See more
|
|
|
|
</a>
|
|
|
|
<h2 class="my-3">Top Games</h2>
|
|
|
|
{{ render_pkggrid(pop_gam) }}
|
|
|
|
|
|
|
|
|
2018-12-22 21:09:29 +00:00
|
|
|
<a href="{{ url_for('packages_page', type='txp', sort='score', order='desc') }}" class="btn btn-secondary float-right">
|
2018-12-22 21:03:01 +00:00
|
|
|
See more
|
|
|
|
</a>
|
|
|
|
<h2 class="my-3">Top Texture Packs</h2>
|
|
|
|
{{ render_pkggrid(pop_txp) }}
|
2018-07-04 01:20:55 +01:00
|
|
|
|
2018-12-31 14:01:19 +00:00
|
|
|
<div class="text-center">
|
|
|
|
<small>
|
|
|
|
CDB has {{ count }} packages available to download.
|
|
|
|
</small>
|
|
|
|
</div>
|
2018-12-22 21:03:01 +00:00
|
|
|
<!-- </main> -->
|
2018-03-18 17:43:30 +00:00
|
|
|
{% endblock %}
|