83 lines
2.4 KiB
HTML
83 lines
2.4 KiB
HTML
<div id="awards-container" class="w-100 h-100">
|
|
{% macro stackable_award(award, src, alt) %}
|
|
<div class="stackable-container">
|
|
{% for i in range(min(p.award_count(award, v), 4)) %}
|
|
<div class="{{award}}">
|
|
<img alt="{{alt}}" src="{{src}}">
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endmacro %}
|
|
|
|
{% if p.award_count("wholesome", v) %}
|
|
{% set wholesome = '/i/wholesome.webp' if SITE_NAME == 'PCM' else '/e/marseywholesome.webp' %}
|
|
{{ stackable_award('wholesome', wholesome, ':#marseywholesome:') }}
|
|
{% endif %}
|
|
|
|
{% if p.award_count("train", v) %}
|
|
{{ stackable_award('train', '/e/marseytrain.webp', ':#marseytrain:') }}
|
|
{% endif %}
|
|
|
|
{% if p.award_count("scooter", v) %}
|
|
{{ stackable_award('scooter', '/e/marseyscooter.webp', ':#marseyscooter:') }}
|
|
{% endif %}
|
|
|
|
{% if p.award_count("firework", v) %}
|
|
<script defer src="{{'js/fireworks.js' | asset}}"></script>
|
|
{{ stackable_award('firework') }}
|
|
{% endif %}
|
|
|
|
{% if p.award_count("confetti", v) %}
|
|
<div class="confetti w-100 h-100"></div>
|
|
{% endif %}
|
|
|
|
{% if p.award_count("ricardo", v) %}
|
|
{% for i in range(min(p.award_count("ricardo", v), 3)) %}
|
|
<div class="ricardo ricardo{{i+1}}">
|
|
<img src="/i/ricardo{{i+1}}.webp">
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
|
|
{% if p.award_count("shit", v) %}
|
|
<script defer src="{{'js/vendor/critters.js' | asset}}"></script>
|
|
<script defer src="{{'js/bugs.js' | asset}}"></script>
|
|
{% endif %}
|
|
|
|
{% if p.award_count("fireflies", v) %}
|
|
<script defer src="{{'js/vendor/critters.js' | asset}}"></script>
|
|
<script defer src="{{'js/fireflies.js' | asset}}"></script>
|
|
{% endif %}
|
|
|
|
{% if p.award_count("tilt", v) %}
|
|
<style>
|
|
@keyframes post-tilt {
|
|
0% {transform: rotate(0deg);}
|
|
25% {transform: rotate({{p.award_count("tilt", v)}}deg);}
|
|
75% {transform: rotate(-{{p.award_count("tilt", v)}}deg);}
|
|
100% {transform: rotate(0deg);}
|
|
}
|
|
@media (max-width: 720px) {
|
|
@keyframes post-tilt {
|
|
0% {transform: rotate(0deg);}
|
|
25% {transform: rotate({{p.award_count("tilt", v)/4}}deg);}
|
|
75% {transform: rotate(-{{p.award_count("tilt", v)/4}}deg);}
|
|
100% {transform: rotate(0deg);}
|
|
}
|
|
}
|
|
#post-root {
|
|
animation-name: post-tilt;
|
|
animation-duration: 60s !important;
|
|
animation-iteration-count: infinite !important;
|
|
animation-direction: alternate !important;
|
|
animation-timing-function: linear !important;
|
|
}
|
|
</style>
|
|
{% endif %}
|
|
|
|
{% if SITE_NAME == 'PCM' %}
|
|
{% include "awards_PCM.html" %}
|
|
{% endif %}
|
|
|
|
</div>
|