* Fix build failure due to Hugo chaning `_internal` template behavior Signed-off-by: hossainemruz <hossainemruz@gmail.com> * Update min Hugo version Signed-off-by: hossainemruz <hossainemruz@gmail.com> --------- Signed-off-by: hossainemruz <hossainemruz@gmail.com>
51 lines
1.8 KiB
HTML
51 lines
1.8 KiB
HTML
{{ define "navbar" }}
|
|
{{ partial "navigators/navbar.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "sidebar" }}
|
|
{{ $homePage:="#" }}
|
|
{{ if hugo.IsMultilingual }}
|
|
{{ $homePage = (path.Join (cond ( eq .Language.Lang "en") "" .Language.Lang) .Type) }}
|
|
{{ end }}
|
|
|
|
<section class="sidebar-section" id="sidebar-section">
|
|
<div class="sidebar-holder">
|
|
<div class="sidebar" id="sidebar">
|
|
<form class="mx-auto" method="get" action="{{ "search" | relLangURL }}">
|
|
<input type="text" name="keyword" value="" placeholder="{{ i18n "search" }}" data-search="" id="search-box" />
|
|
</form>
|
|
<div class="sidebar-tree">
|
|
<ul class="tree" id="tree">
|
|
<li id="list-heading"><a href="{{ .Type | relLangURL }}" data-filter="all">{{ i18n .Type }}</a></li>
|
|
<div class="subtree taxonomy-terms">
|
|
{{ $context := . }}
|
|
{{ partial "navigators/taxonomies.html" (dict "context" $context "taxo" "categories" "title" ( humanize "categories" ) ) }}
|
|
</div>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
|
<section class="content-section" id="content-section">
|
|
<div class="content container-fluid" id="content">
|
|
<div class="container-fluid post-card-holder" id="post-card-holder">
|
|
{{ $posts := where .RegularPagesRecursive "Layout" "!=" "search" }}
|
|
{{ $numShow := site.Params.features.pagination.maxPostsPerPage | default 12}}
|
|
{{ $paginator := .Paginate $posts $numShow }}
|
|
{{ range $paginator.Pages }}
|
|
{{ if .Layout }}
|
|
{{/* ignore the search.md file*/}}
|
|
{{ else }}
|
|
{{ partial "cards/post.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
<div class="paginator">
|
|
{{ partial "pagination.html" . }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|