{% set link_items = [
{
href: path('company_index'),
target: '',
text: '会社概要',
},
{
href: path('message_index'),
target: '',
text: 'メッセージ',
},
{
href: path('staff_index'),
target: '',
text: 'スタッフ紹介',
},
{
href: path('news_index'),
target: '',
text: 'お知らせ',
},
{
href: path('contact_index'),
target: '',
text: 'お問い合わせ',
},
{
href: path('recruit_index'),
target: '',
text: '求人情報',
},
]%}
<footer class="l-footer">
<div class="l-footer_inner">
{# sp-footer #}
<div class="sp-style">
<div class="l-footer_logo">
<img src="{{ asset('build/images/common/logo.png') }}" alt="ふじきっちん">
</div>
<p class="l-footer_text">
平塚富士キッチンは、お客様スタッフ、<br>
お店に関わる全ての人々が<br>
幸せになることを目指しています。
</p>
</div>
{# pc-footer #}
<div class="pc-style">
<div class="l-footer_logo">
<img src="{{ asset('build/images/common/logo.png') }}" alt="ふじきっちん">
</div>
<ul class="l-footer_link-wrap">
{% for item in link_items %}
<li class="l-footer_link-item">
<a class="l-footer_link-item_anchor" href="{{ item.href }}" target="{{ item.target }}">{{ item.text }}</a>
</li>
{% endfor %}
</ul>
</div>
<div class="l-footer_corporate-button">
{% include "components/common/_button.html.twig" with {
text: 'コーポレートサイト',
src: 'build/images/common/icon-link.svg',
href: 'https://www.fujikitchen.com/',
width: '16',
height: '14',
class: 'c-white-border_button',
}%}
</div>
</div>
<div class="l-footer_copy-right">
<p class="l-footer_copy-right_text">
copyright HIRATSUKA FUJI<br class="sp-style">
kitchen recruit. All right reserved
</p>
</div>
</footer>