{% if Instagram %}
{% set instagram_posts = Instagram.getPosts(8) %}
{% if instagram_posts %}
<div class="block_outer mb30">
<div class="ec-role ec-instagram">
<div class="ec-secHeading">
<h2 class="illust-title"><img src="{{ asset('assets/img/title/deco_insta.png', 'user_data') }}" alt="Instagram">Instagram</h2>
<p><a href="https://www.instagram.com/higashiyama_pub" target="_blank">公式Instagramへ</a></p>
</div>
<div class="top_instagram_contents">
<div class="top_instagram_list flex">
{% for post in instagram_posts %}
<div class=" top_instagram_item">
<a href="{{ post.permalink }}" target="_blank">
<img src="{{ post.thumbnail_url ?? post.media_url }}" alt="{{ post.caption }}">
</a>
</div>
{% endfor %}
</div>
</div>
</div>
</div>
{% endif %}
{% endif %}