franca-theme-blog/templates/components/social.j2

17 lines
738 B
Plaintext
Raw Normal View History

2023-07-22 13:18:15 +00:00
<div class="social-icons">
2023-07-25 20:20:25 +00:00
{% if config.languages[language].youtube %}
2023-07-23 12:53:48 +00:00
<a href="https://youtube.com/{{ config.languages[language].youtube }}">
2023-07-25 20:20:25 +00:00
<img src="/images/youtube.svg" alt="{{ config.languages[language].title }}" width="60" />
2023-07-22 13:18:15 +00:00
</a>
2023-07-23 12:53:48 +00:00
{% endif %}
2023-08-19 08:41:26 +00:00
{% if config.languages[language].git %}
<a href="{{ config.languages[language].git }}">
<img src="/images/git.svg" alt="{{ config.languages[language].title }}" width="60" />
2023-07-22 13:18:15 +00:00
</a>
2023-07-23 12:53:48 +00:00
{% endif %}
2023-07-25 20:20:25 +00:00
{% if config.languages[language].telegram %}
2023-07-23 12:53:48 +00:00
<a href="https://t.me/{{ config.languages[language].telegram }}">
2023-07-25 20:20:25 +00:00
<img src="/images/telegram.svg" alt="{{ config.languages[language].title }}" width="60" />
2023-07-22 13:18:15 +00:00
</a>
2023-07-23 12:53:48 +00:00
{% endif %}
2023-07-22 13:18:15 +00:00
</div>