mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
Stefano Pigozzi
51177e5cc7
See https://meta.stackexchange.com/questions/44717/is-gravatar-a-privacy-risk or the Mozilla Known Trackers List.
39 lines
No EOL
1.7 KiB
HTML
39 lines
No EOL
1.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="it">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width">
|
|
<meta name="keywords" content="Royal Games, RYG, gaming">
|
|
{% block prehead %}{% endblock %}
|
|
<title>{% block pagetitle %}{% endblock %} - Royal Games</title>
|
|
<link href="{{ url_for('static', filename='pygments.css') }}" rel="stylesheet" type="text/css">
|
|
<link href="{{ url_for('static', filename=g.css) }}" rel="stylesheet/less" type="text/css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/less.js/3.0.2/less.min.js"></script>
|
|
{% block posthead %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<div class="left">
|
|
<img src="{{ url_for('static', filename='LogoRoyalGames.svg') }}" alt="" title="👑⭐️ RYG" class="ryg-logo">
|
|
<b>Royalnet</b>
|
|
<a href="/">Home</a>
|
|
</div>
|
|
<div class="right">
|
|
{% if config["DEBUG"] %}
|
|
<span id="debug-mode">DEBUG MODE</span>
|
|
{% endif %}
|
|
<span class="login-status">
|
|
{% if g.user %}
|
|
<a href="{{ url_for('page_profile', name=g.user.username) }}">{{ g.user.username }}</a>
|
|
<a class="btn" href="{{ url_for('page_logout') }}">Logout</a>
|
|
{% else %}
|
|
<a class="btn" href="{{ url_for('page_login') }}">Login</a>
|
|
{% endif %}
|
|
</span>
|
|
</div>
|
|
</nav>
|
|
<div class="omnicontainer">
|
|
{% block body %}{% endblock %}
|
|
</div>
|
|
</body>
|
|
</html> |