jefklakscodex/themes/jefklak-creative-portfolio/layouts/partials/portfolio.html

31 lines
959 B
HTML
Raw Normal View History

2018-05-14 07:41:47 +02:00
<div class="col-xs-12 col-sm-8 col-md-9 content-column">
{{ partial "mobile_nav_toggle.html" . }}
2018-05-19 12:05:41 +02:00
<div class="col-lg-8">
<a class="h-card" rel="me" href="{{ .Site.BaseURL }}" style="border: none">
<img src="/img/logo.png" class="logo" alt="jefklaks codex logo" />
</a>
{{ if eq .Paginator.PageNumber 1 }}
2020-06-05 14:10:22 +02:00
<article>
{{ .Content }}
2020-06-05 14:10:22 +02:00
</article>
{{ end }}
2018-05-19 12:05:41 +02:00
<h3>Featured: <em>{{ .Title }}</em>
2020-06-09 14:50:49 +02:00
<span class='pages'>(Page {{ .Paginator.PageNumber }}/{{ .Paginator.TotalPages }})</span> &raquo;
</h3>
2018-05-14 07:41:47 +02:00
{{ range (.Paginate .Pages).Pages }}
{{ if gt (len .Content) 1 }}
{{ partial "portfolio-block.html" . }}
{{ end }}
2018-05-14 07:41:47 +02:00
{{ end }}
2018-05-19 12:05:41 +02:00
<div style="text-align: center;">
{{- template "_internal/pagination.html" . }}
</div>
2018-05-19 12:05:41 +02:00
<hr/>
</div>
2018-05-14 07:41:47 +02:00
</div>