Global CSS and JS partials.

This commit is contained in:
steverusso 2020-06-01 19:29:02 -04:00
parent ede280bb64
commit 11bb22ab30
3 changed files with 5 additions and 4 deletions

View File

@ -4,9 +4,7 @@
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="/icons.css">
<link rel="stylesheet" href="/simplesystems.css">
<link rel="stylesheet" href="/light-theme.css">
{{ partialCached "css-global.html" . }}
<link rel="shortcut icon" href="/favicon.ico">
<title>{{ .Site.Title }} {{ block "title" . }} {{ with .Title }} | {{ . }} {{ end }} {{ end }}</title>
@ -20,6 +18,6 @@
</main>
{{ partial "footer.html" . }}
{{ partial "scripts/scripts.html" . }}
{{ partial "js-global.html" . }}
</body>
</html>

View File

@ -0,0 +1,3 @@
<link rel="stylesheet" href="/icons.css">
<link rel="stylesheet" href="/simplesystems.css">
<link rel="stylesheet" href="/light-theme.css">