41 lines
960 B
HTML
41 lines
960 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{{ partial "head.html" . }}
|
|
<div class="container-xxl">
|
|
|
|
<body class="mb-5">
|
|
{{ partial "nav.html" . }}
|
|
<div class="container">
|
|
{{ if or
|
|
(eq .Page.Section "cv" )
|
|
}}
|
|
<div class="row mt-3">
|
|
{{ block "main" . }}{{ end }}
|
|
</div>
|
|
{{ else }}
|
|
<div class="container mt-5">
|
|
<div class="row">
|
|
<div class="col-lg-9 mt-4">
|
|
<article>
|
|
{{ block "main" . }}{{ end }}
|
|
</article>
|
|
</div>
|
|
<div class="col-lg-3 mt-4">
|
|
{{ partial "cloudtag.html" . }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
{{ if .Page.Store.Get "hasMermaid" }}
|
|
<script src="/js/mermaid.min.js"></script>
|
|
<script>
|
|
mermaid.initialize({ startOnLoad: true });
|
|
</script>
|
|
{{ end }}
|
|
{{ partial "cookie-consent.html" . }}
|
|
</body>
|
|
|
|
|
|
</html> |