depot/web/fup/fupstatic/tmpl/base.html

18 lines
364 B
HTML
Raw Normal View History

2021-03-20 20:40:40 +00:00
<!--
SPDX-FileCopyrightText: 2021 Luke Granger-Brown <depot@lukegb.com>
SPDX-License-Identifier: Apache-2.0
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{{static "css/base.css"}}">
<script type="module" src="{{ static "js/base.js"}}"></script>
</head>
<body>
{{block "main" .}}{{end}}
</body>
</html>