29 lines
873 B
HTML
29 lines
873 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link href="/static/bulma.css" rel="stylesheet">
|
|
<link href="/static/system-installer.css" rel="stylesheet">
|
|
<link rel="shortcut icon" href="/static/icons/blippie.png" type="image/x-icon">
|
|
<link rel="stylesheet" href="/usr/share/fonts-fork-awesome/css/fork-awesome.css">
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/fork-awesome@1.2.0/css/fork-awesome.min.css" integrity="sha256-XoaMnoYC5TH6/+ihMEnospgm0J1PM/nioxbOUdnM8HY=" crossorigin="anonymous">
|
|
<script src="/static/htmx.min.js" crossorigin="anonymous"></script>
|
|
</head>
|
|
<body>
|
|
|
|
<div class="frame">
|
|
{% include "header.html" %}
|
|
|
|
<div class="applet">
|
|
{% block body %}
|
|
{% endblock %}
|
|
</div>
|
|
|
|
{% include "footer.html" %}
|
|
|
|
</div> <!-- class "frame" -->
|
|
|
|
</body>
|
|
</html>
|