forked from devnaestrada/devnaestrada.com.br
-
Notifications
You must be signed in to change notification settings - Fork 0
/
apoiadores.html
30 lines (27 loc) · 846 Bytes
/
apoiadores.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
---
layout: page
css_class: page-supporters
title: Nossos apoiadores
permalink: /apoiadores/
---
{% for type in site.support_collection %}
<ul class="supporters">
<h2>{{ type.title }}</h2>
{% for support in type.supporters %}
<li>
<img src="{{ site.baseurl }}{{ site.supporter_asset_url }}{{ support.img }}" alt="{{ support.name }}" /> {{ support.name }}
</li>
{% endfor %}
</ul>
{% endfor %}
<ul class="supporters">
<h2>Apoiador Master</h2>
<li>
<a href="{{ site.support_master.url }}" class="master-link">
<img src="{{ "public/assets/img/master/contratado.jpg" | prepend: site.baseurl }}" alt="{{ site.support_master.name }}" class="{{ site.support_master.class }}" />
</a>
</li>
</ul>
<a href="https://apoia.se/devnaestrada" class="btn" target="_blank">
Também quero apoiar
</a>