first commit

This commit is contained in:
2023-09-12 21:41:04 +02:00
commit 3361a7f053
13284 changed files with 2116755 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{% if language.flag_url %}
{% if language.flag_width > 0 %}
{% set flag_width = 'width=%s'|format(language.flag_width) %}
{% endif %}
{% if language.flag_height > 0 %}
{% set flag_height = 'height=%s'|format(language.flag_height) %}
{% endif %}
<img
class="{{ css_classes_flag }}"
src="{{ language.flag_url }}"
alt="{{ language.flag_alt }}"
{{ flag_width }}
{{ flag_height }}
/>
{%- endif -%}