{#
This file is part of EC-CUBE
Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
http://www.ec-cube.co.jp/
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
#}
{% extends 'default_frame.twig' %}
{% set body_class = 'event_page' %}
{% block stylesheet %}
<style>
</style>
{% endblock %}
{% block javascript %}
<script>
</script>
{% endblock %}
{% block main %}
<section class="detail_wrap">
<div class="detail_title">
<span>イベント情報</span>
</div>
<div class="event_name">
{{ events.name }}
</div>
<div class="event_sub_name">
{{ events.sub_title }}
</div>
{% if events.image %}
<div class="detail_image detail_image_before d-flex justify-content-center">
<img src="{{ eccube_config.event_image_dir_default }}{{ events.image }}" width="100%" alt="{{ events.name ~ 'イベント画像'}}"\></img>
</div>
{% endif %}
{% if events.day_start and events.day_end %}
<div class="item_comment">
<div class="item_title">
<span>イベント期間</span>
</div>
<div class="">
{{ events.day_start.date|date('Y.m.d') }}~{{ events.day_end.date|date('Y.m.d') }}
</div>
</div>
{% endif %}
{% if events.Course.id %}
<div class="item_comment">
<div class="item_title">
<span>対象コース</span>
</div>
<div class="item_link_data">
<a href="{{ url('course_detail', { id : events.Course.id }) }}" target="_blank" class="">{{ events.Course.name }}</a>
</div>
</div>
{% endif %}
{% if events.url1 or event.url2 %}
<div class="item_comment">
<div class="item_title">
<span>イベント詳細はこちら</span>
</div>
<div class="">
外部リンク
</div>
<div class="item_link_data">
{% if events.url1 and events.url2 %}
<a href="{{ events.url1 }}"><i class="ms-2 fas fa-external-link-alt"></i></a>
<a href="{{ events.url2 }}"><i class="ms-2 fas fa-external-link-alt"></i></a>
{% else %}
{% if events.url1 %}
<a href="{{ events.url1 }}" target="_blank"><i class="ms-2 fas fa-external-link-alt"></i></a>
{% elseif events.url2 %}
<a href="{{ events.url2 }}" target="_blank"><i class="ms-2 fas fa-external-link-alt"></i></a>
{% endif %}
{% endif %}
</div>
</div>
{% endif %}
</section>
{% endblock %}