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

68 lines
1.7 KiB
HTML
Raw Normal View History

2018-05-17 20:30:00 +02:00
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
<head>{{ partial "head.html" . }}</head>
<body>
2021-03-25 17:49:44 +01:00
{{ partial "icons" . }}
2018-05-17 20:30:00 +02:00
<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>
2020-05-25 22:08:25 +02:00
<div class="col-xs-12 col-sm-8 col-md-9 content-column">
2018-05-17 20:30:00 +02:00
{{ 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>
2020-06-05 14:10:22 +02:00
<article>
{{ .Content }}
</article>
2018-05-19 12:05:41 +02:00
<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>
2020-09-27 13:52:59 +02:00
</article>
<article>
<h3><a name="bytag"></a>By Game/Tag</h3>
{{ partial "taglist.html" . }}
</article>
<hr style="clear: both;"/>
2018-05-19 12:05:41 +02:00
<article>
<h3><a name="byarticle"></a>By Article</h3>
<hr style="clear: both;"/>
2018-05-19 12:05:41 +02:00
{{ with .Site.GetPage "section" "articles" }}
{{ partial "articlelist.html" . }}
{{ end }}
</article>
2018-05-17 20:30:00 +02:00
</div>
</div>
</div>
</div>
</main>
2018-05-17 20:30:00 +02:00
</div>
</div>
2018-05-19 12:11:57 +02:00
{{ partial "scripts.html" . }}
2018-05-17 20:30:00 +02:00
{{ partial "footer.html" . }}
2018-05-19 12:11:57 +02:00
2018-05-17 20:30:00 +02:00
</body>
</html>