Files
rancher-docs/layouts/shortcodes/partners.html
2018-04-12 13:59:16 -07:00

15 lines
381 B
HTML

<div class="row">
{{ range .Site.Data.partners.partner }}
<div class="col-md-3 box m-a-sm">
<img src="{{ .Site.BaseURL }}/img/{{.logo}}" height="50" alt="{{.name}}">
<h3>{{.name}}</h3>
<p>{{.description}}</p>
<span class="row">
{{ range .type }}
<span class="bg-accent tag">{{ . }}</span>
{{ end }}
</span>
</div>
{{ end }}
</div>