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

30 lines
683 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>
{{ partial "head.html" . }}
</head>
<body>
{{ partial "icons" . }}
<div id="skiptocontent">
<a href="#top">skip to main content</a>
</div>
{{ with .OutputFormats.Get "RSS" }}
<a href="{{ .RelPermalink }}" id="rsslink" class="no-border">
<img src="/img/rss.png" alt="get RSS feed" class="no-border" />
</a>
{{ end }}
<a name="top" id="top"></a>
<div id="all">
{{ partial "sidebar.html" . }}
<main>
{{ block "main" . }}
{{ end }}
</main>
</div>
{{ partial "scripts.html" . }}
<a name="bottom" id="bottom"></a>
{{ partial "footer.html" . }}
</body>
</html>