35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
<title>Hello World</title>
|
||
|
<link rel="apple-touch-icon" href="images/pwa-icon-256.png" />
|
||
|
{{ $style := resources.Get "styles/main.sass" }}
|
||
|
{{ with $style }}
|
||
|
{{ $styleCSS := . | toCSS }}
|
||
|
<link rel="stylesheet" href="{{ $styleCSS.Permalink }}">
|
||
|
{{ end }}
|
||
|
<link rel="manifest" href="/manifest.json" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<meta name="theme-color" content="white" />
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>Ceiba App</h1>
|
||
|
|
||
|
{{ partial "scores" . }}
|
||
|
|
||
|
{{ $js := resources.Get "js/sw.js" }}
|
||
|
{{ with $js }}
|
||
|
{{ $secureJS := . | js.Build }}
|
||
|
<!--script src="{{ $secureJS.Permalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script-->
|
||
|
{{ end }}
|
||
|
|
||
|
{{ $js := resources.Get "js/main.js" }}
|
||
|
{{ with $js }}
|
||
|
{{ $secureJS := . | js.Build }}
|
||
|
<script src="{{ $secureJS.Permalink }}" integrity="{{ $secureJS.Data.Integrity }}"></script>
|
||
|
{{ end }}
|
||
|
|
||
|
</body>
|
||
|
</html>
|