TrhlinaBar/templates/base.html

29 lines
608 B
HTML
Raw Normal View History

2023-02-25 18:22:03 +01:00
<!DOCTYPE html>
<html lang="en" data-theme="dark">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="https://unpkg.com/@picocss/pico@1.*/css/pico.min.css">
<title>TrhBar</title>
<style>
.message {
padding: 10px;
margin: 5px;
background-color: #f3f3f3
}
nav a {
color: #d64161;
font-size: 3em;
margin-left: 50px;
text-decoration: none;
}
</style>
</head>
<body>
<main class="container">
{% block content %} {% endblock %}
</main>
</body>
</html>