templates/pages/report/_detail_content.html.twig line 1

Open in your IDE?
  1. <main id="report">
  2.   <section class="guide">
  3.     <div class="guideContainer">
  4.       <div class="guideContainer__breadcrumbs">
  5.         <a href="{{ path('top') }}">{{'common.top' |trans|raw}}</a>
  6.         <span class="guideContainerBreadcrumbs__arrow"></span>
  7.         <a href="{{ path('report_index') }}">{{'report.header.text3' |trans|raw}}</a>
  8.         <span class="guideContainerBreadcrumbs__arrow"></span>
  9.         <div>{{ report.trans('title') }}</div>
  10.       </div>
  11.     </div>
  12.   </section>
  13.   <section class="report">
  14.     <div class="reportInfoContainer reportInfoContainer--contents">
  15.       <div class="reportInfoContainer__headline">
  16.         <div class="header">
  17.           <p class="header-tag">{{ report.Entry.categoryLocale(app.request.locale) }}</p>
  18.           <span class="header-date">{{ report.entryDate|date('Y.n.d') }}</span>
  19.         </div>
  20.         <p class="modelplaTitle">{{ report.Entry.trans('title') }}</p>
  21.         <h1 class="modelplanReport">{{ report.trans('title') }}</h1>
  22.       </div>
  23.     </div>
  24.     <div class="reportPlanContainer reportPlanContainer--contents">
  25.       {% if report.mainImg %}
  26.         <div class="img__reportPlan" style="background-image: url({{ path('report_image', {filename: report.mainImg}) }})"></div>
  27.       {% endif %}
  28.       <div class="reportPlanContainer__contents">
  29.         <div class="reportPlanContainerContents__box">
  30.           <div class="text">
  31.             <p>
  32.               {{ report.trans('content')|nl2br }}
  33.             </p>
  34.             {% for child in report.children %}
  35.               {% if child.trans('headline') %}<h3 class="text-header">{{ child.trans('headline') }}</h3>{% endif %}
  36.               {% if child.image %}<img src="{{ path('report_image', {filename: child.image}) }}" alt="{{ report.title }}">{% endif %}
  37.               {% if child.trans('content') %}
  38.                 <p>{{ child.trans('content')|nl2br }}</p>
  39.               {% endif %}
  40.               {% if child.linkUrl %}
  41.                 <p>
  42.                   <a href="{{ child.linkUrl }}" target="_blank">
  43.                     {% if child.trans('link_label') %}{{ child.trans('link_label') }}{% else %}{{ child.linkUrl }}{% endif %}
  44.                   </a>
  45.                 </p>
  46.               {% endif %}
  47.             {% endfor %}
  48.           </div>
  49.           <div class="reportPlanContainerContent__box">
  50.             <a
  51.               class="reportPlanContainerContents__btn"
  52.               href="{% include "components/entry/_entry_list_link.html.twig" with {item: report.Entry} %}">
  53.               {{ 'report.contents.link'|trans({'%category%': report.Entry.categoryLocale(app.request.locale)}) }}
  54.             </a>
  55.           </div>
  56.         </div>
  57.         <div class="reportPlanContainerContents__writer">
  58.           <div class="reportPlanContainerContents__inner">
  59.             <h4 class="reportPlanContainerContentsWriter__header">
  60.               {{ 'report.contents.writer_info'|trans() }}
  61.             </h4>
  62.             <div class="reportPlanContainerContentsWriter__box">
  63.               <div
  64.                 class="reportPlanContainerContentsWriterBox__img"
  65.                 style="background-image:url({% include "components/entry/report/_reporter_image.html.twig" with {reporter: report.ReportWriter} %})">
  66.               </div>
  67.               <div class="reportPlanContainerContentsWriterBox__text">
  68.                 <p class="reportPlanContainerContentsWriterBoxText__name">
  69.                   {% if app.request.locale == "en" and report.ReportWriter.nameEn %}
  70.                     {{ report.ReportWriter.nameEn }}
  71.                   {% else %}
  72.                     {{ report.ReportWriter.name }}
  73.                   {% endif %}
  74.                 </p>
  75.                 <p class="reportPlanContainerContentsWriterBoxText__content">
  76.                   {{ report.ReportWriter.trans('intro') }}
  77.                 </p>
  78.               </div>
  79.             </div>
  80.           </div>
  81.         </div>
  82.         {% if report.Entry.hasPublishReport(report) %}
  83.           <div class="reportPlanContainerContents__other">
  84.             <h2>{{ 'modelplan.report.title'|trans({'%category%': report.Entry.categoryLocale(app.request.locale)}) }}</h2>
  85.             <div class="reportListContainer">
  86.               {% for other in report.Entry.reports %}
  87.                 {% if other.id != report.id and other.isPublishByTimer == true %}
  88.                   {% include "components/entry/report/_list_card.html.twig" with {item: other} %}
  89.                 {% endif %}
  90.               {% endfor %}
  91.             </div>
  92.           </div>
  93.         {% endif %}
  94.       </div>
  95.     </div>
  96.   </section>
  97. </main>