-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsponsors.html
More file actions
46 lines (45 loc) · 1.75 KB
/
sponsors.html
File metadata and controls
46 lines (45 loc) · 1.75 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: root
title: Sponsors
id: sponsors
---
<p class="header-text">
Developing MacPass was and always is about having fun creating an application that is usefull for people.
Knowing that users manage one of the most sensitive data with your tool is something to be very proud of and I'm gratefull for every single user.
</p>
<p class="header-text">
Monetarization was and never will be a goal so I'm more than overjoyed when people send some of their hard earned money my way.
I want to thank each and every one of you.
It's nice to see that there are kind and generous people in the world, a world that all too often seems like it's gone off the rails.</p>
<hr>
<div class="sponsors">
{% for sponsor in site.data.sponsors %}
<div class="sponsor">
<h2>{{ sponsor['name'] }}
{% if sponsor['tier'] == 4 %}
🎉
{% endif %}
</h2>
<div class="sponsor-details">
{% if sponsor['url'] %}
<a href="{{ sponsor['url'] }}">
{% if sponsor['url-title'] %}
{{ sponsor['url-title'] }}
{% else %}
{{ sponsor['url'] }}
{% endif %}
</a>
{% endif %}
{% if sponsor['mail'] %}
<a href="mailto:{{ sponsor['mail'] }}">{{ sponsor['mail'] }}</a>
{% endif %}
{% if sponsor['twitter'] %}
<a href="https://twitter.com/{{ sponsor['twitter'] }}">@{{ sponsor['twitter'] }}</a>
{% endif %}
{% if sponsor['github'] %}
<a href="https://github.com/{{ sponsor['github'] }}">{{ sponsor['github'] }}@GitHub</a>
{% endif %}
</div>
</div>
{% endfor %}
</div>