Skip to content

Commit

Permalink
Create patreons.json (#154)
Browse files Browse the repository at this point in the history
Update donations page with list of Patreons and tiers
  • Loading branch information
dellis1972 authored Oct 10, 2024
1 parent 2b4db98 commit b31bd98
Show file tree
Hide file tree
Showing 2 changed files with 144 additions and 1 deletion.
68 changes: 68 additions & 0 deletions website/_data/patreons.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
[
{
"name": "James Silva",
"tier": "Graphics.EnvironmentMapEffect"
},
{
"name": "D. Ezra Sidran, PhD",
"tier": "GraphicsDevice.DrawUserPrimitives"
},
{
"name": "Pirota Pirozou",
"tier": "Cornflower Blue"
},
{
"name": "macabrett",
"tier": "Cornflower Blue"
},
{
"name": "Michal Škoula",
"tier": "Cornflower Blue",
"url": "https://skoula.cz/"
},
{
"name": "Ben",
"tier": "SpriteBatch"
},
{
"name": "ajian_nedo",
"tier": "SpriteBatch"
},
{
"name": "Ellpeck Games",
"tier": "Model.Draw",
"url": "https://games.ellpeck.de/"
},
{
"name": "Csharpskolan",
"tier": "Cornflower Blue"
},
{
"name": "Donny Beals",
"tier": "SpriteBatch"
},
{
"name": "Rui Holdorf",
"tier": "SpriteBatch"
},
{
"name": "Alex Campbell-Black",
"tier": "Cornflower Blue"
},
{
"name": "NotExplosive",
"tier": "SpriteBatch"
},
{
"name": "Jake Kirkbride",
"tier": "GraphicsDevice.DrawUserPrimitives"
},
{
"name": "Oblotzky",
"tier": "GraphicsDevice.DrawUserPrimitives"
},
{
"name": "Gerald Unterrainer",
"tier": "SpriteBatch"
}
]
77 changes: 76 additions & 1 deletion website/content/donate.njk
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,86 @@ title: Donate
{% endfor %}
</div>
</section>
<section class="container-xxl mb-5">
<h1 id="patreons" class="fw-bold"><a href="#patreons">Patreons By Tier</a></h2>
<p>
The following is a preserved list of individuals and studios that continue to support MonoGame through Patreon.
</p>
<h4 id="EnvironmentMapEffect" class="fw-bold"><a href="https://www.patreon.com/monogame/membership">Graphics.EnvironmentMapEffect - $64 / month</a></h4>
<div class="row">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "Graphics.EnvironmentMapEffect" %}
<div class="col-lg-3 mb-3 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
<strong>{{patreon.name}}</strong>
{% if patreon.url %}</a>{% endif %}
<br />
</div>
{% endif %}
{% endfor %}
</div>
<br />
<h4 id="Model.Draw" class="fw-bold"><a href="https://www.patreon.com/monogame/membership">Model.Draw - $32 / month</a></h4>
<div class="row">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "Model.Draw" %}
<div class="col-lg-3 mb-3 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
<strong>{{patreon.name}}</strong>
{% if patreon.url %}</a>{% endif %}
<br />
</div>
{% endif %}
{% endfor %}
</div>
<br />
<h4 id="GraphicsDevice.DrawUserPrimitives" class="fw-bold"><a href="https://www.patreon.com/monogame/membership">GraphicsDevice.DrawUserPrimitives - $16 / month</a></h4>
<div class="row">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "GraphicsDevice.DrawUserPrimitives" %}
<div class="col-lg-3 mb-3 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
<strong>{{patreon.name}}</strong>
{% if patreon.url %}</a>{% endif %}
<br />
</div>
{% endif %}
{% endfor %}
</div>
<br />
<h4 id="SpriteBatch" class="fw-bold"><a href="https://www.patreon.com/monogame/membership">SpriteBatch - $4 / month</a></h4>
<div class="row">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "SpriteBatch" %}
<div class="col-lg-3 mb-3 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
<strong>{{patreon.name}}</strong>
{% if patreon.url %}</a>{% endif %}
<br />
</div>
{% endif %}
{% endfor %}
</div>
<br />
<h4 id="Cornflower Blue" class="fw-bold"><a href="https://www.patreon.com/monogame/membership">Cornflower Blue - $2 / month</a></h4>
<div class="row">
{% for patreon in patreons | sort() %}
{% if patreon.tier == "Cornflower Blue" %}
<div class="col-lg-3 mb-3 text-center">
{% if patreon.url %}<a href="{{patreon.url}}">{% endif %}
<strong>{{patreon.name}}</strong>
{% if patreon.url %}</a>{% endif %}
<br />
</div>
{% endif %}
{% endfor %}
</div>
</section>

<section class="container-xxl mb-5">
<h1 id="donations" class="fw-bold"><a href="#donations">Donations</a></h1>
<p>
The following is a preserved list of individuals and studios that generiously donated in the past to help run the project.
The following is a preserved list of individuals and studios that generously donated in the past to help run the project.
</p>
<div class="row">
{% for donor in donations | sort(true, false, 'amount') %}
Expand Down

0 comments on commit b31bd98

Please sign in to comment.