app/template/user_data/News/detail.twig line 1

Open in your IDE?
  1. {% extends 'default_frame.twig' %}
  2. {% block main %}
  3. <div class="xs-gutter">
  4.     <div class="help-content-container">
  5.         <div>
  6.             <h2 vlass="page-title">{{ News.title }}</h2>
  7.             <p class="new-detail-page-date mt-2">{{ News.publish_date|date_day }}</p>
  8.         </div>
  9.         <div class="mt-10">
  10.             <p class="new-detail-page-para">
  11.                 {{ News.description|raw|nl2br }}
  12.             </p>
  13.             {% if News.url %}
  14.                 <br>
  15.                 <a href="{{ News.url }}" {% if News.link_method == '1' %}target="_blank"{% endif %}>{{ '詳しくはこちら'|trans }}</a>
  16.             {% endif %}
  17.         </div>
  18.     </div>
  19. </div>
  20. {% endblock %}