khaikang/templates/base_generic.html

19 lines
671 B
HTML

{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
{% block meta%}
{% endblock %}
<meta charset="utf-8">
{% block title %}<title>Khaikang</title>
<link type="text/css" rel="stylesheet" href="{% static 'generic.css' %}?{% now 'U' %}"></style>
{% endblock %}
</head>
<body>
<h1 id="title">{%block maintitle %}Kianting.social{% endblock %}</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>