jefklakscodex/themes/jefklak-creative-portfolio/layouts/_default/baseof.html

34 lines
872 B
HTML
Raw Normal View History

2018-05-14 22:32:52 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
2018-07-24 21:35:52 +02:00
<head>
{{ partial "head.html" . }}
</head>
2018-05-14 22:32:52 +02:00
<body>
2021-03-25 17:49:44 +01:00
{{ partial "icons" . }}
2020-06-05 14:10:22 +02:00
<div id="skiptocontent">
<a href="#top">skip to main content</a>
</div>
2021-07-02 12:12:00 +02:00
{{ with .OutputFormats.Get "RSS" }}
<a href="{{ .RelPermalink }}" id="csslink" class="no-border">
<img src="/img/rss.png" alt="get RSS feed" class="no-border" />
</a>
{{ end }}
2018-05-14 22:32:52 +02:00
<div id="all">
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left">
{{ partial "sidebar.html" . }}
2020-06-05 14:10:22 +02:00
<a name="top" id="top"></a>
<main>
{{ block "main" . }}
{{ end }}
</main>
2018-05-14 22:32:52 +02:00
</div>
</div>
</div>
{{ partial "scripts.html" . }}
2020-04-13 13:33:59 +02:00
<a name="bottom" id="bottom"></a>
2018-05-17 20:30:00 +02:00
{{ partial "footer.html" . }}
2018-05-14 22:32:52 +02:00
</body>
</html>