contentdb/app/templates/index.html

35 lines
804 B
HTML
Raw Normal View History

2018-03-18 18:43:30 +01:00
{% extends "base.html" %}
{% block title %}
Dashboard
{% endblock %}
{% block content %}
2018-05-09 19:35:36 +02:00
<header>
<h1>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.
Browse {{ packages | length }} packages,
all available under a free and open source
license.
</p>
2018-03-21 21:10:11 +01:00
2018-05-09 19:35:36 +02:00
<form method="get" action="/packages/">
<input type="text" name="q" value="{{ query or ''}}" />
<input type="submit" value="Search" />
</form>
</header>
2018-03-18 18:43:30 +01:00
2018-05-09 19:35:36 +02:00
<ul class="packagegrid">
{% for p in packages %}
<li><a href="{{ p.getDetailsURL() }}"
2018-05-13 22:23:09 +02:00
style="background-image: url({{ p.getMainScreenshotURL() or '/static/placeholder.png' }});">
2018-05-09 19:35:36 +02:00
<span>{{ p.title }} by {{ p.author.display_name }}</span>
</a></li>
{% else %}
<li><i>No packages available</i></ul>
{% endfor %}
</ul>
2018-03-18 18:43:30 +01:00
{% endblock %}