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

68 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>{{ partial "head.html" . }}</head>
<body>
{{ partial "icons" . }}
<a name="top" id="top"></a>
<div id="all">
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left">
{{ partial "sidebar.html" . }}
<main>
<div class="col-xs-12 col-sm-8 col-md-9 content-column">
{{ partial "mobile_nav_toggle.html" . }}
<div class="row">
<div class="col-lg-8">
<a class="h-card" rel="me" href="https://jefklakscodex.com/" style="border: none">
<img class="no-border" alt="logo" src="/img/logo.png" />
</a>
<article>
{{ .Content }}
</article>
<article>
<h3><a name="byplatform"></a>By Platform</h3>
<hr style="clear: both;"/>
<ul>
{{ range (where .Site.Pages "Section" "==" "platforms") }}
<li>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
</article>
<article>
<h3><a name="bytag"></a>By Game/Tag</h3>
{{ partial "taglist.html" . }}
</article>
<hr style="clear: both;"/>
<article>
<h3><a name="byarticle"></a>By Article</h3>
<hr style="clear: both;"/>
{{ with .Site.GetPage "section" "articles" }}
{{ partial "articlelist.html" . }}
{{ end }}
</article>
</div>
</div>
</div>
</div>
</main>
</div>
</div>
{{ partial "scripts.html" . }}
{{ partial "footer.html" . }}
</body>
</html>