You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
2.2 KiB
HTML

<!DOCTYPE HTML>
<html>
<head>
<title>Monero LWS Web App</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="shortcut icon" href="/static/images/favicon.ico" type="image/png">
<meta itemprop="name" content="MyThing app">
<meta itemprop="description" content="Monero LWS web app">
<meta itemprop="image" content="">
<meta property="og:url" content="">
<meta property="og:type" content="website">
<meta property="og:title" content="">
<meta property="og:description" content="Monero LWS web app">
<meta property="og:image" content="">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="">
<meta name="twitter:description" content="Monero LWS web app">
<meta name="twitter:image" content="">
<meta name="keywords" content="Wownero, Monero, crypto, wallet, explorer">
<link rel="stylesheet" href="https://unpkg.com/chota@latest">
<link rel="stylesheet" href="/static/main.css">
<!--
<link rel="stylesheet" href="/static/css/skeleton.css">
<link rel="stylesheet" href="/static/css/main.css">
-->
</head>
<body>
<nav class="nav">
<div class="nav-left">
<a class="{% if request.path == '/' %}active{% endif %}" href="/">Home</a>
<a class="{% if request.path == '/utils' %}active{% endif %}" href="/utils">Utils</a>
</div>
<!-- <div class="nav-center">
<a class="brand">
<img src="logo.svg" alt="">
</a>
</div> -->
<div class="nav-right">
<a class="{% if request.path == '/wallets' %}active{% endif %}" href="/wallets">Wallets</a>
<a href="/logout">Logout</a>
</div>
</nav>
<div class="container">
<div style="margin: 1em;">
{% for message in get_flashed_messages() %}
<li>{{ message }}</li>
{% endfor %}
</div>
{% block content %}
{% endblock %}
</div>
</body>
</html>