app/template/default/Common/Topics.twig line 1

Open in your IDE?
  1. {% set topics = topics_data() %}
  2. {% if topics is defined %}
  3.   <div class="topics" style="box-sizing: content-box;">
  4.     {% for key, topic in topics %}
  5.       {% if key <= 4 %}
  6.         <hr noshade size=1 style="background-color:#EBF2F5;border:none;border-top:1px dashed #CCCCCC;;margin:8px 0px 8px 0px;" />
  7.         <p style="font-weight:bold">{{ topic.cdate }}</p>
  8.         <p>{{ topic.topix_title }}</p>
  9.         <p>{{ topic.topix_comment | trans | raw }}</p>
  10.       {% endif %}
  11.     {% endfor %}
  12.     {% if topics | length > 5 %}
  13.       <hr noshade size=1 style="background-color:#EBF2F5;border:none;border-top:1px dashed #CCCCCC;;margin:8px 0px 8px 0px;" />
  14.       <div style="text-align:right"><a href="/topics">もっと見る</a></div>
  15.     {% endif %}
  16.   </div>
  17. {% endif %}