khaikang/templates/base_generic.html

20 lines
659 B
HTML
Raw Normal View History

{% load static %}
2022-11-09 01:43:24 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
{% block meta%}
{% endblock %}
2022-11-09 01:43:24 +08:00
<meta charset="utf-8">
{% block title %}<title>Local Library</title>
<link type="text/css" rel="stylesheet" href="{% static 'generic.css' %}"></style>
{% endblock %}
2022-11-09 01:43:24 +08:00
</head>
<body>
<h1 id="title">{%block title}Kianting.social{%endblock title}</h1>
<div id="headbar">{% block headbar %}{% endblock headbar%}</div>
<div id="sidebar">{% block sidebar %}<!-- insert default navigation text for every page -->{% endblock %}</div>
<div id="content">{% block content %}<!-- default content text (typically empty) -->{% endblock %}</div>
</body>
</html>