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

55 lines
1.2 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>
<style>
.content-column-content ul li:before {
margin: 0 !important;
}
2018-05-19 12:11:57 +02:00
.content-column-content h5 {
2018-05-19 12:05:41 +02:00
width: 15%;
}
2018-05-19 12:11:57 +02:00
.content-column-content ul {
2018-05-19 12:05:41 +02:00
width: 80%;
}
2018-05-17 20:30:00 +02:00
</style>
<body>
<a name="top" id="top"></a>
<div id="all">
<div class="container-fluid">
<div class="row row-offcanvas row-offcanvas-left">
{{ partial "sidebar.html" . }}
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">
{{ .Content }}
2018-05-17 20:30:00 +02:00
<div class="content-column-content">
2018-05-19 12:05:41 +02:00
<h3><a name="byarticle"></a>By Article</h3>
2018-05-19 15:07:53 +02:00
<hr style="clear: both;"/>
2018-05-19 12:05:41 +02:00
{{ with .Site.GetPage "section" "articles" }}
{{ partial "articlelist.html" . }}
{{ end }}
<h3><a name="bytag"></a>By Tag</h3>
2018-05-19 15:07:53 +02:00
{{ partial "taglist.html" . }}
<hr style="clear: both;"/>
2018-05-17 20:30:00 +02:00
</div>
</div>
</div>
</div>
</div>
</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>