mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2025-09-13 22:45:16 -05:00
23 lines
497 B
HTML
23 lines
497 B
HTML
{{ $list := dict }}
|
|
{{ $extraclasses := "" }}
|
|
{{ with try (index . "list") }}
|
|
{{ if .Err }}
|
|
{{ $list = $ }}
|
|
{{ else }}
|
|
{{ $list = .Value }}
|
|
{{ $extraclasses = index $ "classes" }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<div class="page-list{{ with $extraclasses }}{{ . }}{{ end }}">
|
|
{{ with $list }}
|
|
{{ range . }}
|
|
{{ .Render "summary" }}
|
|
{{ end }}
|
|
{{ else }}
|
|
<div>
|
|
{{ i18n "no_posts" }}
|
|
</div>
|
|
{{ end }}
|
|
</div>
|