{% block main %}
{% if CustomerKbn == "seller" %}
{% else %}
{% if app.user %}
{# ログインしている場合の処理 #}
{% else %}
{# ログインしていない場合の処理 #}
<div class="ec-shelfRole12">
<div class="col2002">
<!-- <div class="sidepic"><a href="{{ app.request.schemeAndHttpHost }}/products/list?category_id=15"><img src="{{ asset('/img/event/event01.jpg') }}" /></a></div>-->
<div class="sidepic"><a href="https://s-drea.com/customentry?et=buyer"><img src="{{ asset('/img/banner/01_banner-top/event01_450-300.jpg') }}" /></a></div>
<div class="sidepic"><a href="https://s-drea.com/customentry?et=buyer"><img src="{{ asset('/img/banner/01_banner-top/event02_450-300.jpg') }}" /></a></div>
</div>
</div>
{% endif %}
{% endif %}
{% endblock %}
<style>
.col2002 {
display: grid;
grid-template-columns: repeat(2, 1fr); /* 2列のグリッド */
gap: 10px; /* イメージ間の間隔 */
}
.sidepic {
text-align: center; /* 画像を中央揃えにするため */
}
.sidepic img {
max-width: 100%; /* 画像を親要素に合わせてサイズ調整 */
height: auto; /* アスペクト比を維持 */
}
</style>