17 lines
472 B
HTML
17 lines
472 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
|
||
|
<meta http-equiv="x-ua-compatible" content="ie=edge" />
|
||
|
<link rel="stylesheet" type="text/css" href="static/style.css" />
|
||
|
<title>{% block title %}{% endblock title %} - Forgejo Spam Admin</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div class="main">
|
||
|
{% block content %}
|
||
|
{% endblock content %}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|