templates for self-hosting game jams (or any other kind of jam tbh)
at main 1.1 kB view raw
1<!DOCTYPE html> 2<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}"> 3 4<head> 5 <meta charset="utf-8"> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 {{- partial "favicon.html" . -}} 8 <title>{{- block "title" . }}{{ .Site.Title }}{{ with .Title }} | {{ . }}{{ end }}{{- end }}</title> 9 10 {{- partial "seo_tags.html" . -}} 11 <meta name="referrer" content="no-referrer-when-downgrade" /> 12 <link rel="manifest" href="./site.webmanifest"> 13 14 {{ with .OutputFormats.Get "rss" -}} 15 {{ printf `<link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} 16 {{ end -}} 17 18 {{- partial "style.html" . -}} 19</head> 20 21<body class="{{- block 'bodyClass' .}}{{- end }}"> 22 <div id="banner"> 23 <!-- uncomment the below line if banner is desired --> 24 <!-- <img src="!!YOURBANNER!!" alt="!!BANNERALT!!" /> --> 25 </div> 26 <div id="page"> 27 {{- partial "header.html" . -}} 28 <main> 29 {{- block "main" . }}{{- end }} 30 </main> 31 <main> 32 {{- block "main" . }}{{- end }} 33 </main> 34 {{- partial "footer.html" . -}} 35</body> 36</html>