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

Open in your IDE?
  1. {% set history_items = [
  2.   {
  3.   date:'1977.04',
  4.   text:'株式会社平塚富士キッチン設立<br>平塚市役所店開店<br>平塚市役所売店開店<br>平塚市民病院店開店',
  5.   },
  6.   {
  7.   date:'1981.09',
  8.   text:'平塚市民センター店開店',
  9.   },
  10.   {
  11.   date:'1985.09',
  12.   text:'西友二宮店開店(1999.5 撤退)',
  13.   },
  14.   {
  15.   date:'1990.04',
  16.   text:'本社社屋完成<br>お届け調理センターふじきっちん開所',
  17.   },
  18.   {
  19.   date:'1993.10',
  20.   text:'岡崎屋台村開店(2002.9 業種変更)',
  21.   },
  22.   {
  23.   date:'1996.10',
  24.   text:'海鮮問屋「ふじ丸」小田原駅前店開店',
  25.   },
  26.   {
  27.   date:'1998.10',
  28.   text:'海鮮問屋「ふじ丸」本店開店<br>法要御席ふじきっちん',
  29.   },
  30.   {
  31.   date:'1999.11',
  32.   text:'海鮮問屋「ふじ丸」秦野店開店(2010.12 撤退)',
  33.   },
  34.   {
  35.   date:'2001.05',
  36.   text:'炭火焼肉「快」豊田店開店',
  37.   },
  38.   {
  39.   date:'2001.12',
  40.   text:'海鮮問屋「ふじ丸」大雄山店開店<br>海鮮問屋「ふじ丸」別館',
  41.   },
  42.   {
  43.   date:'2002.10',
  44.   text:'回転江戸前寿司「ふじ丸」開店',
  45.   },
  46.   {
  47.   date:'2003.05',
  48.   text:'和牛焼肉「快」小田原店開店',
  49.   },
  50.   {
  51.   date:'2003.08',
  52.   text:'炭火焼肉「快」小田原駅前店開店',
  53.   },
  54.   {
  55.   date:'2004.10',
  56.   text:'炭火焼肉「快」田村店開店(2012.3 業種変更)',
  57.   },
  58.   {
  59.   date:'2008.05',
  60.   text:'ホルモン酒家「快」平塚駅前店開店(2012.7 撤退)',
  61.   },
  62.   {
  63.   date:'2012.03',
  64.   text:'やきとりの快田村店開店',
  65.   },
  66. ] %}
  67. <section class="pg_company_history">
  68.   <div class="pg_company_history_inner">
  69.     {% include "components/common/_content-title.html.twig" with {
  70.     title:'HISTORY',
  71.     japan :'会社沿革',
  72.     class:'c-content-title',
  73.     }%}
  74.     <div class="pg_company_history_wrap">
  75.       {% for item in history_items %}
  76.       <dl class="pg_company_history_item">
  77.         <dt class="pg_company_history_date">{{ item.date }}</dt>
  78.         <dd class="pg_company_history_text">{{ item.text|raw }}</dd>
  79.       </dl>
  80.       {% endfor %}
  81.     </div>
  82.   </div>
  83. </section>