dianaband.info/themes/dianaband/templates/base.html
Dooho Yi c1c2644708 added a theme 'dianaband'
+ several example pages added
+ working on the layout
2022-02-06 20:57:40 +09:00

26 lines
769 B
HTML

<!DOCTYPE html>
<html lang="{% block html_lang %}{{ DEFAULT_LANG }}{% endblock html_lang %}">
<head>
{% block head %}
<title>{% block title %}{{ SITENAME }}{% endblock title %}</title>
<meta charset="utf-8" />
<meta name="generator" content="Pelican" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link type="text/css" rel="stylesheet" href="/theme/base.css" />
{% endblock head %}
</head>
<body>
<ul class="sidebar">
{% for title, link in MENUITEMS.items() %}
<li><a href="{{ link }}">{{ title }}</a></li>
{% endfor %}
</ul>
<div class="content">
{% block content %}
{% endblock %}
</div>
<!-- <script src="/theme/base.js"></script> -->
</body>
</html>