mirror of
https://github.com/minetest/contentdb.git
synced 2024-11-10 09:33:44 +01:00
159 lines
6.4 KiB
HTML
159 lines
6.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{% block title %}title{% endblock %} - {{ config.USER_APP_NAME }}</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/bootstrap.css">
|
|
<link rel="stylesheet" type="text/css" href="/static/custom.css?v=7">
|
|
<link rel="search" type="application/opensearchdescription+xml" href="/static/opensearch.xml" title="ContentDB" />
|
|
<link rel="shortcut icon" href="/favicon-16.png" sizes="16x16">
|
|
<link rel="icon" href="/favicon-128.png" sizes="128x128">
|
|
<link rel="icon" href="/favicon-32.png" sizes="32x32">
|
|
{% block headextra %}{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<nav class="navbar navbar-expand-lg navbar-dark bg-primary">
|
|
<div class="container">
|
|
<a class="navbar-brand" href="/">{{ config.USER_APP_NAME }}</a>
|
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01" aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
|
|
<span class="navbar-toggler-icon"></span>
|
|
</button>
|
|
|
|
<div class="collapse navbar-collapse" id="navbarColor01">
|
|
<ul class="navbar-nav mr-auto">
|
|
{% for item in current_menu.children recursive %}
|
|
{% if item.visible %}
|
|
<li class="nav-item {% if item.children %} dropdown{% endif %}">
|
|
<a class="nav-link" href="{{ item.url }}"
|
|
{% if item.children %}
|
|
class="dropdown-toggle"
|
|
data-toggle="dropdown"
|
|
role="button"
|
|
aria-expanded="false"
|
|
{% endif %}>
|
|
{{ item.text }}
|
|
{% if item.children %}
|
|
<span class="caret"></span>
|
|
{% endif %}
|
|
</a>
|
|
{% if item.children %}
|
|
<ul class="dropdown-menu" role="menu">
|
|
{{ loop(item.children) }}
|
|
</ul>
|
|
{% endif %}
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
<form class="form-inline my-2 my-lg-0" method="GET" action="/packages/">
|
|
{% if type %}<input type="hidden" name="type" value="{{ type }}" />{% endif %}
|
|
<input class="form-control mr-sm-2" name="q" type="text" placeholder="Search {{ title | lower or 'all packages' }}" value="{{ query or ''}}">
|
|
<input class="btn btn-secondary my-2 my-sm-0 mr-sm-2" type="submit" value="Search" />
|
|
<!-- <input class="btn btn-secondary my-2 my-sm-0"
|
|
data-toggle="tooltip" data-placement="bottom"
|
|
title="Go to the first found result for this query."
|
|
type="submit" name="lucky" value="First" /> -->
|
|
</form>
|
|
<ul class="navbar-nav ml-auto">
|
|
{% if current_user.is_authenticated %}
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('notifications.list_all') }}">
|
|
<img src="/static/notification{% if current_user.notifications %}_alert{% endif %}.svg" />
|
|
</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('packages.create_edit') }}">+</a></li>
|
|
<li class="nav-item dropdown">
|
|
<a class="nav-link dropdown-toggle"
|
|
data-toggle="dropdown"
|
|
role="button"
|
|
aria-expanded="false">{{ current_user.display_name }}
|
|
<span class="caret"></span></a>
|
|
|
|
<ul class="dropdown-menu" role="menu">
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('users.profile', username=current_user.username) }}">Profile</a>
|
|
</li>
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('users.profile', username=current_user.username) }}#unadded-topics">Your unadded topics</a>
|
|
</li>
|
|
{% if current_user.canAccessTodoList() %}
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('todo.view') }}">{{ _("Work Queue") }}</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('users.list_all') }}">{{ _("User list") }}</a></li>
|
|
{% endif %}
|
|
<li class="nav-item">
|
|
<a class="nav-link" href="{{ url_for('todo.topics') }}">{{ _("All unadded topics") }}</a>
|
|
</li>
|
|
{% if current_user.rank == current_user.rank.ADMIN %}
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('admin.admin_page') }}">{{ _("Admin") }}</a></li>
|
|
{% endif %}
|
|
{% if current_user.rank == current_user.rank.MODERATOR %}
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('admin.tag_list') }}">{{ _("Tag Editor") }}</a></li>
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('admin.license_list') }}">{{ _("License Editor") }}</a></li>
|
|
{% endif %}
|
|
<li class="nav-item"><a class="nav-link" href="{{ url_for('user.logout') }}">{{ _("Sign out") }}</a></li>
|
|
</ul>
|
|
</li>
|
|
{% else %}
|
|
<li><a class="nav-link" href="{{ url_for('user.login') }}">{{ _("Sign in") }}</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</nav>
|
|
|
|
{% block flash_messages %}
|
|
{%- with messages = get_flashed_messages(with_categories=true) -%}
|
|
{% if messages %}
|
|
<ul id="alerts">
|
|
{% for category, message in messages %}
|
|
<li class="alert alert-{{category}} container">
|
|
<span class="icon_message"></span>
|
|
|
|
{{ message|safe }}
|
|
|
|
<div style="clear: both;"></div>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
{% endif %}
|
|
{%- endwith %}
|
|
{% endblock %}
|
|
|
|
{% block container %}
|
|
<main class="container mt-4">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
{% endblock %}
|
|
|
|
<footer class="container footer-copyright my-5 page-footer font-small text-center">
|
|
ContentDB © 2018-9 to <a href="https://rubenwardy.com/">rubenwardy</a> |
|
|
<a href="https://github.com/minetest/contentdb">GitHub</a> |
|
|
<a href="{{ url_for('flatpage', path='help') }}">{{ _("Help") }}</a> |
|
|
<a href="{{ url_for('flatpage', path='policy_and_guidance') }}">{{ _("Policy and Guidance") }}</a> |
|
|
<a href="{{ url_for('flatpage', path='help/reporting') }}">{{ _("Report / DMCA") }}</a> |
|
|
<a href="{{ url_for('users.list_all') }}">{{ _("User List") }}</a>
|
|
|
|
{% if debug %}
|
|
<p style="color: red">
|
|
DEBUG MODE ENABLED
|
|
</p>
|
|
{% endif %}
|
|
</footer>
|
|
|
|
<script src="/static/jquery.min.js"></script>
|
|
<script src="/static/popper.min.js"></script>
|
|
<script src="/static/bootstrap.min.js"></script>
|
|
<script src="/static/easymde.min.js"></script>
|
|
<link rel="stylesheet" type="text/css" href="/static/easymde.min.css">
|
|
<script>
|
|
$("textarea.markdown").each(function() {
|
|
new EasyMDE({ element: this, hideIcons: ["image"], forceSync: true });
|
|
})
|
|
</script>
|
|
{% block scriptextra %}{% endblock %}
|
|
</body>
|
|
</html>
|