forked from data.coop/website
23 lines
438 B
HTML
23 lines
438 B
HTML
<h2>{{ i18n "badges_headline" }}</h2>
|
|
|
|
{{ range $badge_key, $badge := $.Site.Data.badges.da.badges.badges }}
|
|
|
|
<h3>
|
|
{{ title .name }}
|
|
<img src="{{ "/static/img" | absURL }}/badges/{{ .icon }}" class="badge-icon">
|
|
</h3>
|
|
|
|
{{ markdownify .description }}
|
|
|
|
{{ end }}
|
|
|
|
<h2>{{ i18n "status_headline" }}</h2>
|
|
|
|
{{ range $.Site.Data.badges.da.status.status }}
|
|
|
|
<h3>{{ title .name }}</h3>
|
|
|
|
{{ markdownify .description }}
|
|
|
|
{{ end }}
|