diff --git a/website/_data/patreons.json b/website/_data/patreons.json new file mode 100644 index 00000000..cb12d52b --- /dev/null +++ b/website/_data/patreons.json @@ -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" + } +] diff --git a/website/content/donate.njk b/website/content/donate.njk index 9e63381f..c2ec07b2 100644 --- a/website/content/donate.njk +++ b/website/content/donate.njk @@ -44,11 +44,86 @@ title: Donate {% endfor %} +
+

Patreons By Tier

+

+ The following is a preserved list of individuals and studios that continue to support MonoGame through Patreon. +

+

Graphics.EnvironmentMapEffect - $64 / month

+
+ {% for patreon in patreons | sort() %} + {% if patreon.tier == "Graphics.EnvironmentMapEffect" %} +
+ {% if patreon.url %}{% endif %} + {{patreon.name}} + {% if patreon.url %}{% endif %} +
+
+ {% endif %} + {% endfor %} +
+
+

Model.Draw - $32 / month

+
+ {% for patreon in patreons | sort() %} + {% if patreon.tier == "Model.Draw" %} +
+ {% if patreon.url %}{% endif %} + {{patreon.name}} + {% if patreon.url %}{% endif %} +
+
+ {% endif %} + {% endfor %} +
+
+

GraphicsDevice.DrawUserPrimitives - $16 / month

+
+ {% for patreon in patreons | sort() %} + {% if patreon.tier == "GraphicsDevice.DrawUserPrimitives" %} +
+ {% if patreon.url %}{% endif %} + {{patreon.name}} + {% if patreon.url %}{% endif %} +
+
+ {% endif %} + {% endfor %} +
+
+

SpriteBatch - $4 / month

+
+ {% for patreon in patreons | sort() %} + {% if patreon.tier == "SpriteBatch" %} +
+ {% if patreon.url %}{% endif %} + {{patreon.name}} + {% if patreon.url %}{% endif %} +
+
+ {% endif %} + {% endfor %} +
+
+

Cornflower Blue - $2 / month

+
+ {% for patreon in patreons | sort() %} + {% if patreon.tier == "Cornflower Blue" %} +
+ {% if patreon.url %}{% endif %} + {{patreon.name}} + {% if patreon.url %}{% endif %} +
+
+ {% endif %} + {% endfor %} +
+

Donations

- 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.

{% for donor in donations | sort(true, false, 'amount') %}