2024-02-26 00:34:32 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2024-03-11 15:25:18 +00:00
|
|
|
<title>{% block title %}{{ title }}{% endblock %}</title>
|
2024-03-11 02:36:30 +00:00
|
|
|
<link rel="stylesheet" href="/assets/css/index.css">
|
|
|
|
<link rel="stylesheet" href="/assets/css/theme-forgejo-auto.css">
|
2024-02-26 00:34:32 +00:00
|
|
|
|
|
|
|
{% block head %}{% endblock %}
|
|
|
|
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div id="header">
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div id="content">
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
<div id="footer">
|
|
|
|
{% block footer %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|