templates/website/includes/sociais.html.twig line 1

Open in your IDE?
  1. {% from 'utils.html.twig' import ico %}
  2. <div class="sociais">
  3.     {# LINKEDIN #}
  4.     {% if profile.linkedin %}
  5.         <a class="linkedin" href="{{ profile.linkedin }}" title="LinkedIn" target="_blank">{{ ico('linkedin') }}</a>
  6.     {% endif %}
  7.     {# WEBSITE #}
  8.     {% if profile.website %}
  9.         <a class="website" href="{{ profile.website }}" title="Website" target="_blank">{{ ico('globe') }}</a>
  10.     {% endif %}
  11.     {# TWITTER #}
  12.     {% if profile.twitter %}
  13.         <a class="twitter" href="{{ profile.twitter }}" title="Twitter" target="_blank">{{ ico('twitter') }}</a>
  14.     {% endif %}
  15.     {# FACEBOOK #}
  16.     {% if profile.facebook %}
  17.         <a class="facebook" href="{{ profile.facebook }}" title="Facebook" target="_blank">{{ ico('facebook') }}</a>
  18.     {% endif %}
  19.     {# INSTAGRAM #}
  20.     {% if profile.instagram %}
  21.         <a class="instagram" href="{{ profile.instagram }}" title="Instagram" target="_blank">{{ ico('instagram') }}</a>
  22.     {% endif %}
  23.     {# YOUTUBE #}
  24.     {% if profile.youtube %}
  25.         <a class="youtube" href="{{ profile.youtube }}" title="YouTube" target="_blank">{{ ico('youtube') }}</a>
  26.     {% endif %}
  27.     {# TIKTOK #}
  28.     {% if profile.tiktok %}
  29.         <a class="tiktok" href="{{ profile.tiktok }}" title="Tiktok" target="_blank">{{ ico('tiktok') }}</a>
  30.     {% endif %}
  31. </div>