depot/web/fup/fupstatic/tmpl/base.html
Luke Granger-Brown e21db7a061 fup: add a template function for getting paths to static assets
We add the hash of the file to the static assets, so they can be cached
indefinitely.  This also, however, means that we need some way of referring to
them.
2021-03-21 03:03:15 +00:00

17 lines
364 B
HTML

<!--
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>