19 lines
538 B
Plaintext
19 lines
538 B
Plaintext
<p></p>
|
|
|
|
<div class="menu">
|
|
<p class="subtitle">
|
|
Thank you to our wonderful patrons who keep this site running 💖
|
|
</p>
|
|
|
|
<% if (Array.isArray(data.patrons) && data.patrons.length > 0) { %>
|
|
<ul class="menu-list">
|
|
<% for (const patron of data.patrons) { %>
|
|
<li>
|
|
<%= patron.name %>
|
|
</li>
|
|
<% } %>
|
|
</ul>
|
|
<% } else { %>
|
|
<p class="has-text-grey-light">Patron names are private by default. Become the first supporter and <a href="/account#settings">opt-in</a> to have your name shown!</p>
|
|
<% } %>
|
|
</div> |