Initial commit -- migration to zola
This commit is contained in:
commit
a79e7faa87
55 changed files with 375 additions and 0 deletions
29
templates/base.html
Normal file
29
templates/base.html
Normal file
|
@ -0,0 +1,29 @@
|
|||
<!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>
|
Loading…
Add table
Add a link
Reference in a new issue