Sahand
initial commit
6b83428
raw
history blame contribute delete
561 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
{% block meta %} {% endblock %}
<title>Nowcasting Admin</title>
<style>
nav a {
color: #343434;
font-size: 1em;
margin-left: 50px;
text-decoration: none;
}
nav a:hover{
color: #7a7a7a;
}
</style>
</head>
<body>
<nav>
<a href="{{ url_for('home') }}">Home</a>
</nav>
<hr>
<div class="content">
{% block content %} {% endblock %}
</div>
</body>
</html>