Omphaloskepsis-2/layouts/partials/cv/organisations/organisation-items.html

27 lines
791 B
HTML
Raw Normal View History

2022-11-10 22:48:02 -07:00
{{ if gt ( len .content ) 4 }}
2023-06-30 21:16:59 -06:00
<details id="{{ .section_title | anchorize }}" class="org-items row">
2022-11-10 22:48:02 -07:00
<summary>
<h2 class="subheading">{{ .section_title }} ({{ len .content }})</h2>
<div class="index">
{{ range first 4 .content }}
{{ partial "item-tile.html" . }}
{{ end }}
</div>
</summary>
<div class="index">
{{ range after 4 .content }}
{{ partial "item-tile.html" . }}
{{ end }}
</div>
</details>
{{ else }}
2023-06-30 21:16:59 -06:00
<div id="{{ .section_title | anchorize }}" class="org-items row">
2022-11-10 22:48:02 -07:00
<h2 class="subheading">{{ .section_title }} ({{ len .content }})</h2>
<div class="index">
{{ range first 4 .content }}
{{ partial "item-tile.html" . }}
{{ end }}
</div>
</div>
{{ end }}