mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
74 lines
1.8 KiB
HTML
74 lines
1.8 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}
|
|
Welcome
|
|
{% endblock %}
|
|
|
|
{% block scriptextra %}
|
|
<script type="application/ld+json">
|
|
{
|
|
"@context": "https://schema.org",
|
|
"@type": "WebSite",
|
|
"url": "https://content.minetest.net/",
|
|
"potentialAction": {
|
|
"@type": "SearchAction",
|
|
"target": "https://content.minetest.net/packages?q={search_term_string}",
|
|
"query-input": "required name=search_term_string"
|
|
}
|
|
}
|
|
</script>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<!-- <header class="jumbotron">
|
|
<div class="container">
|
|
<h1 class="display-3">{{ config.USER_APP_NAME }}</h1>
|
|
|
|
<p class="lead">
|
|
Minetest's official content repository.
|
|
Browse {{ count }} packages,
|
|
the majority of which are available under a free
|
|
and open source license.
|
|
</p>
|
|
</div>
|
|
</header>
|
|
|
|
<main class="container"> -->
|
|
{% from "macros/packagegridtile.html" import render_pkggrid %}
|
|
|
|
|
|
<a href="{{ url_for('packages_page', sort='created_at', order='desc') }}" class="btn btn-secondary float-right">
|
|
See more
|
|
</a>
|
|
<h2 class="my-3">Recently Added</h2>
|
|
{{ render_pkggrid(new) }}
|
|
|
|
|
|
<a href="{{ url_for('packages_page', type='mod', sort='score', order='desc') }}" class="btn btn-secondary float-right">
|
|
See more
|
|
</a>
|
|
<h2 class="my-3">Top Mods</h2>
|
|
{{ render_pkggrid(pop_mod) }}
|
|
|
|
|
|
<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) }}
|
|
|
|
|
|
<a href="{{ url_for('packages_page', type='txp', sort='score', order='desc') }}" class="btn btn-secondary float-right">
|
|
See more
|
|
</a>
|
|
<h2 class="my-3">Top Texture Packs</h2>
|
|
{{ render_pkggrid(pop_txp) }}
|
|
|
|
<div class="text-center">
|
|
<small>
|
|
CDB has {{ count }} packages, with a total of {{ downloads }} downloads.
|
|
</small>
|
|
</div>
|
|
<!-- </main> -->
|
|
{% endblock %}
|