23 lines
616 B
HTML
Raw Permalink Normal View History

2024-02-27 10:07:50 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<title>{% block fulltitle %}{% block title %}{% endblock %} - {% block sitename %}Demo{% endblock %}{% endblock %}</title>
{% block stylesheets %}
<link rel="stylesheet" href="/static/style.css" />
{% block extrastylesheet %}{% endblock %}
{% endblock %}
{% endblock %}
</head>
<body>
<div id="content">{% block content %}{% endblock %}</div>
<div id="footer">
{% block footer %}
&copy; Copyright 2024 by <a href="http://blog.jeffthecoder.xyz/">Jeff</a>.
{% endblock %}
</div>
</body>
</html>