You are here

socialfeed-instagram-post-image.html.twig in Social Feed 8

{% if post.media_url %}
  {% set alt = post.raw.caption ? post.raw.caption[:50] ~ (post.raw.caption|length > 50 ? '...') : '' %}
  {% if post.post_url %}
    <a href="{{ post.post_url }}">
      <img src="{{ post.media_url }}" alt="{{ alt }}"/>
    </a>
  {% else %}
    <img src="{{ post.media_url }}" alt="{{ alt }}"/>
  {% endif %}
{% endif %}

File

templates/socialfeed-instagram-post-image.html.twig
View source
  1. {% if post.media_url %}
  2. {% set alt = post.raw.caption ? post.raw.caption[:50] ~ (post.raw.caption|length > 50 ? '...') : '' %}
  3. {% if post.post_url %}
  4. <a href="{{ post.post_url }}">
  5. <img src="{{ post.media_url }}" alt="{{ alt }}"/>
  6. </a>
  7. {% else %}
  8. <img src="{{ post.media_url }}" alt="{{ alt }}"/>
  9. {% endif %}
  10. {% endif %}