mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-10-04 17:04:53 +02:00
34 lines
No EOL
1.4 KiB
Twig
34 lines
No EOL
1.4 KiB
Twig
{# (medias sociaux TODO) #}
|
|
|
|
{% block social_medias %}
|
|
<fieldset class="mb-3">
|
|
<legend class="h6">Réseaux sociaux</legend>
|
|
|
|
{% set social_medias = {
|
|
'mastodon': { 'icon': 'bi-mastodon', 'label': 'Mastodon' },
|
|
'facebook': { 'icon': 'bi-facebook', 'label': 'Facebook' },
|
|
'instagram': { 'icon': 'bi-instagram', 'label': 'Instagram' },
|
|
'tiktok': { 'icon': 'bi-tiktok', 'label': 'TikTok' },
|
|
'youtube': { 'icon': 'bi-youtube', 'label': 'YouTube' },
|
|
'linkedin': { 'icon': 'bi-linkedin', 'label': 'LinkedIn' },
|
|
} %}
|
|
|
|
<div id="social-media-tags">
|
|
{% for key, social in social_medias %}
|
|
{% set tag_name = 'contact:' ~ key %}
|
|
<div class="input-group mb-2">
|
|
<span class="input-group-text" style="width: 120px;">
|
|
<i class="bi {{ social.icon }} me-2"></i>
|
|
{{ social.label }}
|
|
</span>
|
|
<input type="text"
|
|
class="form-control"
|
|
id="commerce_tag_value__{{ tag_name }}"
|
|
name="commerce_tag_value__{{ tag_name }}"
|
|
value="{{ place.tags[tag_name] ?? '' }}"
|
|
placeholder="@compte ou URL complète">
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</fieldset>
|
|
{% endblock social_medias %} |