htmlroc/template.html

17 lines
259 B
HTML
Raw Normal View History

2019-06-13 21:04:49 +00:00
<!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>