Update December 2021

This commit is contained in:
Jeremy Thomas
2021-12-03 12:41:07 +00:00
parent 544515d73b
commit 701616d04a
16 changed files with 529 additions and 148 deletions

View File

@@ -0,0 +1,16 @@
{% if site.data.backers[include.tier].size > 0 or site.data.github[include.tier].size > 0 %}
<h2>{{ include.title }}</h2>
<ul>
{% for pt in site.data.backers[include.tier] reversed %}
<li>
{{ pt.name }}
</li>
{% endfor %}
{% for gh in site.data.github[include.tier] reversed %}
<li>
{{ gh }}
</li>
{% endfor %}
</ul>
{% endif %}