note-aggregator.html 612 B

123456789101112131415161718
  1. {{ $paginator := .Paginate .RegularPagesRecursive 10 }}
  2. {{ range $paginator.Pages }}
  3. {{ if .Layout }}
  4. {{/* ignore search.md file*/}}
  5. {{ else }}
  6. {{$id := .Params.Menu.Notes.Identifier }}
  7. <h4 class="note-collection-title" id="{{ $id }}">
  8. <a href="#{{ $id }}"># {{ .Title }}</a>
  9. {{$badges:= split .File.Dir "/"}}
  10. {{ range after 1 $badges }}
  11. <span class="badge btn-info note-badge">{{ . }}</span>
  12. {{ end }}
  13. </h4>
  14. <div class="note-collection">
  15. {{ .Content }}
  16. </div>
  17. {{ end }}
  18. {{ end }}