forked from NoLog.cz/TrhlinaBar
28 lines
608 B
HTML
28 lines
608 B
HTML
|
|
<!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>
|