You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
122 lines
4.9 KiB
122 lines
4.9 KiB
{% set player_bar = [
|
|
('/npc/spells', 'spells', 'Spells'),
|
|
('/worldmap', 'worldmap', 'Maps'),
|
|
('https://reddit.com/r/PalismaACKS/wiki', 'redditwiki', 'Wiki'),
|
|
] %}
|
|
{% set judge_bar = [
|
|
('/lairs', 'lairs', 'Lairs'),
|
|
('http://autarch.co/treasure', 'treasure', 'Treasure'),
|
|
('/quest/list', 'questlist', 'Quests'),
|
|
('/npc/party', 'npcparty', 'Generate Party'),
|
|
('/npc/single', 'npcsingle', 'Generate NPC'),
|
|
('/wiki', 'wiki', 'Wiki'),
|
|
]%}
|
|
|
|
{% set navigation_bar = [
|
|
('/', 'index', 'Home'),
|
|
('/handbook', 'handbook', 'Handbook'),
|
|
(player_bar, 'section', 'Player Resources'),
|
|
(judge_bar, 'section', 'Judge Resources'),
|
|
('https://reddit.com/r/PalismaACKS', 'subreddit', '/r/PalismaACKS'),
|
|
] %}
|
|
|
|
{% set active_page = active_page|default('index') %}
|
|
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>{% block title %}{% endblock %} - Palisma ACKS</title>
|
|
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" contents="width=device-width, initial-scale=1">
|
|
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
|
|
|
|
<!-- UIkit CSS -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/uikit@3.2.4/dist/css/uikit.min.css" />
|
|
|
|
<!-- UIkit JS -->
|
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.2.4/dist/js/uikit.min.js"></script>
|
|
<script src="https://cdn.jsdelivr.net/npm/uikit@3.2.4/dist/js/uikit-icons.min.js"></script>
|
|
|
|
<style>
|
|
h1 strong {
|
|
display: block;
|
|
font-size: 50%;
|
|
opacity: 0.65;
|
|
}
|
|
|
|
.uk-navbar-nav > li > a {
|
|
font-size: 1em;
|
|
text-transform: none;
|
|
}
|
|
</style>
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<nav class="uk-navbar-container" uk-navbar>
|
|
<div class="uk-navbar-left">
|
|
<a href="" class="uk-hidden@m uk-button-default uk-margin-small-left uk-margin-small-right" uk-toggle="target: #offcanvas-nav" uk-icon="menu"></a>
|
|
<a href="" class="uk-navbar-item uk-logo">Palisma ACKS</a>
|
|
</div>
|
|
<div class="uk-navbar-center uk-visible@m">
|
|
<ul class="uk-navbar-nav">
|
|
{% for href, id, label in navigation_bar %}
|
|
{% if id == 'section' %}
|
|
<li>
|
|
<a href="">{{ label|e }}</a>
|
|
<div class="uk-navbar-dropdown">
|
|
<ul class="uk-nav uk-navbar-dropdown-nav">
|
|
{% for phref, pid, plabel in href %}
|
|
<li>
|
|
<a href="{{ phref|e }}">{{ plabel|e }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</li>
|
|
{% else %}
|
|
<li {% if id == active_page %} class="uk-active" {% endif %}>
|
|
<a href="{{ href|e }}">{{ label|e }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</nav>
|
|
<div id="offcanvas-nav" uk-offcanvas="overlay: true">
|
|
<div class="uk-offcanvas-bar uk-flex uk-flex-column">
|
|
<ul class="uk-nav uk-nav-primary uk-nav-center uk-margin-auto-vertical">
|
|
{% for href, id, label in navigation_bar %}
|
|
{% if id == 'section' %}
|
|
<li class="uk-nav-header uk-margin-large-top">{{ label|e }}</li>
|
|
{% for phref, pid, plabel in href %}
|
|
<li {% if pid == active_page %} class="uk-active" {% endif %}>
|
|
<a href="{{ phref|e }}">{{ plabel|e }}</a>
|
|
</li>
|
|
{% endfor %}
|
|
<li class="uk-margin-large-bottom"/>
|
|
{% else %}
|
|
<li {% if id == active_page %} class="uk-active" {% endif %}>
|
|
<a href="{{ href|e }}">{{ label|e }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="uk-container uk-margin-medium-top">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
<footer class="uk-flex uk-flex-top uk-flex-center uk-margin-small uk-margin-medium-top">
|
|
<div class="uk-text-center uk-text-small">
|
|
Made by <a href="https://binaryatrocity.name">binaryatrocity</a>.
|
|
ACKS & related © <a href="http://www.autarch.co/">Autarch</a>.
|
|
</div>
|
|
</footer>
|
|
|
|
{% block scripts %}
|
|
{% endblock %}
|
|
</body>
|
|
</html>
|