* Example site: bump hugo modules to latest versions * Fix deprecation warnings emitted by hugo v0.124 * Fix typos * Netlify: bump hugo version --------- Co-authored-by: Emruz Hossain <hossainemruz@gmail.com>
38 lines
1.3 KiB
HTML
38 lines
1.3 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">
|
|
{{ partial "navigators/sidebar.html" (dict "menuName" "notes" "menuItems" site.Menus.notes "ctx" . ) }}
|
|
</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 note-card-holder" id="note-card-holder">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</section>
|
|
{{ end }}
|