mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 17:43:46 +01:00
15 lines
310 B
HTML
15 lines
310 B
HTML
|
{% extends "base.html" %}
|
||
|
|
||
|
{% block title %}
|
||
|
{{ package.title }}
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block content %}
|
||
|
{{ package.title }}
|
||
|
{{ package.author.display_name }}
|
||
|
{{ package.name }}
|
||
|
{{ package.desc }}
|
||
|
<a href="{{ package.repo }}">VCS Repo</a>
|
||
|
<a href="{{ package.issueTracker }}">Report Issue</a>
|
||
|
{% endblock %}
|