rDrama/files/events/templates/awards.html

12 lines
476 B
HTML
Raw Normal View History

2022-12-16 20:16:36 +00:00
<div class="awards-container">
2022-12-16 21:03:59 +00:00
{% for i in range(p.award_count("gingerbread", v) * 4) %}
2022-12-16 20:16:36 +00:00
<div class="fall-snowflake">
<img src="/i/event/awards/gingerbread.png?v=1" class="animate-spin object-contain" style="width: 40px; height: 40px;" alt="animate marsey gingerbread icon" />
</div>
{% endfor %}
2022-12-16 21:13:40 +00:00
{% if p.award_count("snow", v) %}
2022-12-16 21:17:03 +00:00
<script src="{{'js/event/snow.js'|asset}}"></script>
2022-12-16 21:21:36 +00:00
<script>snow(80 * {{p.award_count('snow', v)}});</script>
2022-12-16 21:13:40 +00:00
{% endif %}
2022-12-16 20:16:36 +00:00
</div>