Luke Granger-Brown
e21db7a061
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.
17 lines
364 B
HTML
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>
|