17 lines
259 B
HTML
17 lines
259 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
<head>
|
||
|
<title>{{ .Title }}</title>
|
||
|
{{ if .CSSFile }}
|
||
|
<link href="{{ .CSSFile }}" rel="stylesheet" />
|
||
|
{{ end }}
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<header class="credits">
|
||
|
{{ .Credits | htmlify }}
|
||
|
</header>
|
||
|
</body>
|
||
|
|
||
|
</html>
|