35 lines
2 KiB
HTML
35 lines
2 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
{% set app_name = 'Salvi' %}
|
||
|
|
<title>{% block title %}{{ app_name }}{% endblock %}</title>
|
||
|
|
<meta charset="utf-8">
|
||
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
|
<link rel="stylesheet" href="/static/style.css">
|
||
|
|
<!-- material icons -->
|
||
|
|
<link rel="stylesheet" href="https://cdn.sakuragasaki46.local/common/material-icons.css">
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="__top"></div>
|
||
|
|
<div class="content">
|
||
|
|
{% for msg in get_flashed_messages() %}
|
||
|
|
<div class="flash">{{ msg }}</div>
|
||
|
|
{% endfor %}
|
||
|
|
{% block content %}{% endblock %}
|
||
|
|
</div>
|
||
|
|
<ul class="top-menu">
|
||
|
|
<li class="dark-theme-toggle-anchor"><a href="javascript:toggleDarkTheme(true)" class="dark-theme-toggle-on" title="Dark theme"><span class="material-icons">brightness_3</span></a><a href="javascript:toggleDarkTheme(false)" class="dark-theme-toggle-off" title="Light theme"><span class="material-icons">brightness_5</span></a><script>function toggleDarkTheme(a){document.cookie="dark="+(+a)+";max-age=31556952;path=/";document.body.classList.toggle("dark",a)}if(document.cookie.match(/\bdark=1\b/)){document.body.classList.add("dark")}</script></li>
|
||
|
|
<li><a href="/" title="{{ T('homepage') }}"><span class="material-icons">home</span></a></li>
|
||
|
|
<li><a href="/search/" title="{{ T('search') }}"><span class="material-icons">search</span></a></li>
|
||
|
|
<li><a href="/p/random/" title="{{ T('random-page') }}"><span class="material-icons">shuffle</span></a></li>
|
||
|
|
<li><a href="/create/" title="{{ T('new-note') }}"><span class="material-icons">create</span></a></li>
|
||
|
|
</ul>
|
||
|
|
<div class="footer">
|
||
|
|
<div class="footer-copyright">© 2020 Sakuragasaki46.</div>
|
||
|
|
<div class="footer-actions" id="page-actions">{% block actions %}{% endblock %}</div>
|
||
|
|
</div>
|
||
|
|
<div class="backontop"><a href="#__top" title="Back on top"><span class="material-icons">arrow_upward</span></a></div>
|
||
|
|
{% block scripts %}{% endblock %}
|
||
|
|
</body>
|
||
|
|
</html>
|