mirror of
https://github.com/sartography/spiffworkflow_website.git
synced 2025-02-24 13:28:29 +00:00
43 lines
1.0 KiB
HTML
43 lines
1.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
{{ partial "meta.html" . }}
|
|
<title>{{ block "title" . }}{{ .Params.Title }}, {{ .Site.Title }}{{ end }}</title>
|
|
{{ partial "css.html" . }}
|
|
<link rel="stylesheet" href="css/owl.carousel.min.css">
|
|
<link rel="stylesheet" href="css/owl.theme.default.min.css">
|
|
<link rel="stylesheet" type="text/css" href="/css/custom_sartography_1.css">
|
|
</head>
|
|
<body>
|
|
{{ if ne .Site.Params.preloader false }}
|
|
<!-- Preloader -->
|
|
<div id="preloader">
|
|
<div id="status"></div>
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ block "main" . }}
|
|
|
|
{{ partial "single/single.html" . }}
|
|
|
|
{{ if not .Params.no_comments }}
|
|
<div>
|
|
{{ partial "comments.html" . }}
|
|
</div>
|
|
{{ end }}
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
<!-- Back To Top Button -->
|
|
<div id="backtotop"><a href="#"></a></div>
|
|
|
|
{{ partial "sidebar.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ partial "javascript.html" . }}
|
|
{{- template "partials/cookie-consent.html" . }}
|
|
|
|
</body>
|
|
</html>
|