2022-11-24 00:24:57 +08:00
|
|
|
{% load static %}
|
2022-11-09 01:43:24 +08:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2022-11-24 00:24:57 +08:00
|
|
|
{% block meta%}
|
|
|
|
{% endblock %}
|
2022-11-09 01:43:24 +08:00
|
|
|
<meta charset="utf-8">
|
2022-11-26 05:01:20 +08:00
|
|
|
{% block title %}<title>Khaikang</title>
|
2022-11-27 01:34:44 +08:00
|
|
|
<link type="text/css" rel="stylesheet" href="{% static 'generic.css' %}?{% now 'U' %}"></style>
|
2022-11-24 00:24:57 +08:00
|
|
|
{% endblock %}
|
2022-11-09 01:43:24 +08:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2022-11-26 05:01:20 +08:00
|
|
|
<h1 id="title">{%block maintitle %}Kianting.social{% endblock %}</h1>
|
2022-11-09 01:43:24 +08:00
|
|
|
<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>
|