53 lines
2.1 KiB
HTML
53 lines
2.1 KiB
HTML
{% extends "base.html" %}
|
|
{% block title %}Furizon 2024 Sponsorcount{% endblock %}
|
|
{% block head %}
|
|
<meta property="og:title" content="Sponsor count - Furizon" />
|
|
<meta property="og:image:type" content="image/jpeg" />
|
|
<meta property="og:image:alt" content="Furizon logo" />
|
|
<meta property="og:image" content="https://reg.furizon.net/res/furizon.png" />
|
|
<meta property="og:image:secure_url" content="https://reg.furizon.net/res/furizon.png" />
|
|
<meta property="og:description" content="Thanks to all the amazing furs who decided to support us this year ❤️"/>
|
|
{% endblock %}
|
|
{% block main %}
|
|
<main class="container">
|
|
<header>
|
|
<picture>
|
|
<source srcset="/res/furizon.png" media="(prefers-color-scheme:dark)">
|
|
<img src="/res/furizon-light.png" style="height:4rem;text-align:center;">
|
|
</picture>
|
|
</header>
|
|
<h2 class="rainbow-text">Sponsor count!</h2>
|
|
<p>Welcome to the sponsor-count page! This is the list of users that support us! Thanks really a lot to everyone ❤️</p>
|
|
{% for person in orders.values() if person.sponsorship == "super"%}
|
|
{% if loop.first %}
|
|
<hr />
|
|
<h1>Super sponsors!</h1>
|
|
<div class="grid people" style="padding-bottom:1em;">
|
|
{% endif %}
|
|
<div style="margin-bottom: 1em;">
|
|
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %}
|
|
{% include 'blocks/propic.html' %}
|
|
{% endwith %}
|
|
<h5>{{person.ans('fursona_name')}}</h5>
|
|
</div>
|
|
{% if loop.last %}</div>{% endif %}
|
|
{% endfor %}
|
|
|
|
{% for person in orders.values() if person.sponsorship == "normal"%}
|
|
{% if loop.first %}
|
|
<hr />
|
|
<h1>Sponsors</h1>
|
|
<div class="grid people" style="padding-bottom:1em;">
|
|
{% endif %}
|
|
<div style="margin-bottom: 1em;">
|
|
{% with current=order, order=person, imgSrc='/res/propic/' + (person.ans('propic') or 'default.png'), effects = true, flag = true %}
|
|
{% include 'blocks/propic.html' %}
|
|
{% endwith %}
|
|
<h5>{{person.ans('fursona_name')}}</h5>
|
|
</div>
|
|
{% if loop.last %}</div>{% endif %}
|
|
{% endfor %}
|
|
|
|
</main>
|
|
{% endblock %}
|