{#
Copyright (C) SPREAD WORKS Inc. All Rights Reserved.
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 = 'tabacms_post_page' %}
{# 投稿データの取得 #}
{% set post = TabaCMSPost() %}
{% block javascript %}
{{ TabaCMSAsset('script.js','script')|raw }}
{{ post.getScript|raw }}
{% endblock javascript %}
{% block stylesheet %}
{{ TabaCMSAsset('style.css','style')|raw }}
{% endblock stylesheet %}
{% block metatitle %}{{ post.getTitle|raw }}{% endblock %}
{% block breadcrumb %}
<li><a href="{{ type.getListURI }}"><span>{{ type.getTypeName }}</span></a> »</li>
<li><span itemprop="name">{{ post.getTitle|raw }}</span></li>
{% endblock %}
{% block title %}
<h1 class="c-title-06">
<span class="s-text">
{{ type.getTypeName }}
</span>
</h1>
{% endblock %}
{% block main %}
<div class="c-section">
<h2 class="c-title-07"><span class="s-text">{{ post.getTitle|raw }}</span></h2>
<div class="c-text">
<p class="c-post-time">
<time class="font-en">{{ post.getPublicDate|date('Y.m.d') }}</time>
</p>
{% if post.getThumbnail is not empty %}
<div class="c-text">
<img src="{{ asset(post.getThumbnail,'save_image') }}" class="w-100">
</div>
{% endif %}
<div class="c-text">
{{ post.getBody|raw }}
</div>
</div>
</div>
<div class="block-center">
<a href="{{ type.getListURI }}" class="c-btn-01"><span class="s-text">{{ type.getTypeName }}一覧に戻る</span>
<i class="s-icon">
<svg>
<use xlink:href="{{ asset('assets/img/ico/ico_arrow_forward.svg#obj') }}"></use>
</svg>
</i>
</a>
</div>
{% endblock %}