mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-23 21:08:18 +00:00
29 lines
622 B
HTML
29 lines
622 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
{{ partial "meta.html" . }}
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "css.html" . }}
|
|
</head>
|
|
<body>
|
|
{{ if ne .Site.Params.preloader false }}
|
|
<!-- Preloader -->
|
|
<div id="preloader">
|
|
<div id="status"></div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
|
|
<!-- Back To Top Button -->
|
|
<div id="backtotop"><a href="#"></a></div>
|
|
|
|
{{ if .Site.Params.sidebar }}
|
|
{{ partial "sidebar.html" . }}
|
|
{{ end }}
|
|
|
|
{{ partial "javascript.html" . }}
|
|
</body>
|
|
</html>
|