You are here

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

{% if post.media_url %}
  {% if post.post_url %}
    <a href="{{ post.post_url }}">
      <video controls="controls" src="{{ post.media_url }}"></video>
    </a>
  {% else %}
    <video src="{{ post.media_url }}"></video>
  {% endif %}
{% endif %}

File

templates/socialfeed-instagram-post-video.html.twig
View source
  1. {% if post.media_url %}
  2. {% if post.post_url %}
  3. <a href="{{ post.post_url }}">
  4. <video controls="controls" src="{{ post.media_url }}"></video>
  5. </a>
  6. {% else %}
  7. <video src="{{ post.media_url }}"></video>
  8. {% endif %}
  9. {% endif %}