mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-24 13:28:29 +00:00
31 lines
742 B
HTML
31 lines
742 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
{{ partial "meta.html" . }}
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "css.html" . }}
|
|
<link rel="stylesheet" type="text/css" href="/css/custom.css">
|
|
</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" . }}
|
|
{{- template "partials/cookie-consent.html" . }}
|
|
</body>
|
|
</html>
|