14 lines
565 B
HTML
Raw Normal View History

<section class="widgets">
<div class="widgets__cloud">
2018-03-28 15:34:26 -06:00
{{- range $index, $widget := .Resources -}}
<span class="widgets__item {{if eq $index 0}}widgets__item_active{{end}}" data-widget-target="{{.Params.target}}">{{.Params.label}}</span>
{{- end -}}
</div>
<div class="widgets__container">
2018-03-28 15:34:26 -06:00
{{- range $index, $widget := .Resources -}}
<div class="widget {{if eq $index 0}}widget_open{{end}}" id="{{.Params.target}}">
{{.Content}}
</div>
{{- end -}}
</div>
</section>