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

28 lines
666 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>
<a name="top" id="top"></a>
{{ with .OutputFormats.Get "RSS" }}
<a href="{{ .RelPermalink }}" id="csslink" target="_blank">
<img src="/img/rss.png" />
</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" . }}
{{ block "main" . }}
{{ end }}
</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>