hugo-toha/layouts/partials/note-aggregator.html
hossainemruz 063a8256e2 Re-structure note lists
Signed-off-by: hossainemruz <hossainemruz@gmail.com>
2021-05-02 04:04:02 +06:00

18 lines
No EOL
626 B
HTML

{{ $paginator := .Paginate .RegularPagesRecursive 10 }}
{{ range $paginator.Pages }}
{{ if .Layout }}
{{/* ignore search.md file*/}}
{{ else }}
{{$id := .Params.Menu.Notes.Identifier }}
<!-- <h4 class="note-collection-title" id="{{ $id }}">
<a href="#{{ $id }}"># {{ .Title }}</a>
{{$badges:= split .File.Dir "/"}}
{{ range after 1 $badges }}
<span class="badge btn-info note-badge">{{ . }}</span>
{{ end }}
</h4> -->
{{ .Content }}
<!-- <div class="note-collection">
</div> -->
{{ end }}
{{ end }}