templates/pages/company/_overview.html.twig line 1

Open in your IDE?
  1. {% set overview_items = [
  2.   {
  3.   title:'会社名',
  4.   text:'株式会社 平塚富士キッチン',
  5.   },
  6.   {
  7.   title:'代表取締役',
  8.   text:'岩田 直樹',
  9.   },
  10.   {
  11.   title:'設立',
  12.   text:'昭和52年4月27日',
  13.   },
  14.   {
  15.   title:'資本金',
  16.   text:'1,200万円',
  17.   },
  18.   {
  19.   title:'所在地',
  20.   text:'〒254-0019<br>神奈川県平塚市西真土1丁目9番地45号',
  21.   },
  22.   {
  23.   title:'従業員',
  24.   text:'社員 56名/パート・アルバイト 250名',
  25.   },
  26.   {
  27.   title:'事業内容',
  28.   text:'仕出し料理及びケータリング事業<br>料理飲食業及び食堂経営<br>食料品及び日用雑貨販売',
  29.   },
  30.   {
  31.   title:'取引金融機関',
  32.   text:'三菱東京UFJ銀行/湘南農業協同組合',
  33.   },
  34. ] %}
  35. <section class="pg_company_overview">
  36.   <div class="pg_company_overview_inner">
  37.     {% include "components/common/_content-title.html.twig" with {
  38.     title:'COMPANY',
  39.     japan :'会社概要',
  40.     class:'c-content-title',
  41.     }%}
  42.     <div class="pg_company_overview_wrap">
  43.       {% for item in overview_items %}
  44.       <dl class="pg_company_overview_item">
  45.         <dt class="pg_company_overview_title">{{ item.title }}</dt>
  46.         <dd class="pg_company_overview_text">{{ item.text | raw }}</dd>
  47.       </dl>
  48.       {% endfor %}
  49.     </div>
  50.   </div>
  51. </section>