29 lines
729 B
HTML
29 lines
729 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{% block page_title %} {% endblock page_title %} Bear's den</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ get_url(path='style.css') }}"/>
|
|
<link rel="icon" type="image/x-icon" href="{{ get_url( path='favicon.ico') }}">
|
|
</head>
|
|
<body>
|
|
<div id="menu">
|
|
<a href="/">home/</a>
|
|
<a href="https://git.brloh.is">git/</a>
|
|
<a href="/lang">lang/</a>
|
|
<a href="/math">math/</a>
|
|
<a href="/travel">travel/</a>
|
|
<span class="right">
|
|
Bear's den 🐻
|
|
</span>
|
|
</div>
|
|
<div id="content">
|
|
<div id="nav">
|
|
{% block nav %} {% endblock nav %}
|
|
</div>
|
|
<div id="main">
|
|
{% block content %} {% endblock content %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|