head.html.tmpl
1 {{- define "head" }} 2 <!doctype html> 3 <html lang="en-GB"> 4 <head> 5 <title>Willow</title> 6 <meta name="viewport" content="width=device-width, initial-scale=1.0" /> 7 <meta name="title" content="Willow" /> 8 <meta 9 name="description" 10 content="Forge-agnostic software release tracker" 11 /> 12 13 <!-- Indicate that we support both light and dark mode, and that we prefer light --> 14 <meta name="color-scheme" content="light dark" /> 15 16 <!-- Preload CSS reset --> 17 <link rel="preload" href="/static/reset.css" as="style" /> 18 <link rel="stylesheet" href="/static/reset.css" /> 19 20 <!-- Preload CSS styles --> 21 <link rel="preload" href="/static/colours.css" as="style" /> 22 <link rel="stylesheet" href="/static/colours.css" /> 23 <link rel="preload" href="/static/styles.css" as="style" /> 24 <link rel="stylesheet" href="/static/styles.css" /> 25 </head> 26 <body> 27 {{- end -}}