Initial commit: Complete multilingual website with translation system

This commit is contained in:
2025-06-30 16:19:03 +02:00
commit 98ad79899e
28 changed files with 8850 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{% macro stats_section(stats, t=t) %}
<div class="hero-stats mb-4">
<div class="row text-center">
{% for stat in stats %}
<div class="col-4">
<div class="stat-item">
<h3 class="text-white fw-bold mb-1">{{ stat.value }}</h3>
<small class="text-light">{{ t(stat.label) }}</small>
</div>
</div>
{% endfor %}
</div>
</div>
{% endmacro %}