app/template/default/Block/plg_instagram.twig line 1

Open in your IDE?
  1. {% if Instagram %}
  2.     {% set instagram_posts = Instagram.getPosts(8) %}
  3.     {% if instagram_posts %}
  4.         <div class="block_outer mb30">
  5.             <div class="ec-role ec-instagram">
  6.                 <div class="ec-secHeading">
  7.                     <h2 class="illust-title"><img src="{{ asset('assets/img/title/deco_insta.png', 'user_data') }}" alt="Instagram">Instagram</h2>
  8.                     <p><a href="https://www.instagram.com/higashiyama_pub" target="_blank">公式Instagramへ</a></p>
  9.                 </div>
  10.                 <div class="top_instagram_contents">
  11.                     <div class="top_instagram_list flex">
  12.                         {% for post in instagram_posts %}
  13.                             <div class=" top_instagram_item">
  14.                                 <a href="{{ post.permalink }}" target="_blank">
  15.                                     <img src="{{ post.thumbnail_url ?? post.media_url }}" alt="{{ post.caption }}">
  16.                                 </a>
  17.                             </div>
  18.                         {% endfor %}
  19.                     </div>
  20.                 </div>
  21.             </div>
  22.         </div>
  23.     {% endif %}
  24. {% endif %}