templates/pages/news/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}最新情報 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
  3. {% block meta_og_title %}最新情報 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
  4. {% block meta_twitter_title %}最新情報 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
  5. {% block meta_description %}
  6. {{ parent() }}
  7. とこワクの情報を発信しています。ぜひチェックしてください。
  8. {% endblock %}
  9. {% block meta_og_description %}
  10. {{ parent() }}
  11. とこワクの情報を発信しています。ぜひチェックしてください。
  12. {% endblock %}
  13. {% block extraHeader %}
  14. <link rel="canonical" content="{{ absolute_url(path('news_index')) }}">
  15. {% endblock %}
  16. {% block body %}
  17. <main id="news">
  18.   <section class="guide">
  19.     <div class="guideContainer">
  20.       <div class="guideContainer__breadcrumbs">
  21.         <a href="/">{{'common.top' |trans|raw}}</a>
  22.         <span class="guideContainerBreadcrumbs__arrow"></span>
  23.         <div>{{'news.modelplan-report' |trans|raw}}</div>
  24.       </div>
  25.     </div>
  26.   </section>
  27.   <section class="newsPage">
  28.     <div class="newsPageTitleContainer">
  29.       <h1>{{'news.newsPage.title' |trans|raw}}</h1>
  30.       <div class="newsPageTitleContainer__category">
  31.         <a href="{{ path('news_index') }}" class="{% if not current_category %}active{% endif %}">{{ 'common.all'|trans }}</a>
  32.         {% for category in categories %}
  33.           <span></span>
  34.           <a href="{{ path('news_index') }}?category={{ category[0].id }}" class="{% if current_category == category[0].id %}active{% endif %}">{{ category[0].trans('name') }}</a>
  35.         {% endfor %}
  36.       </div>
  37.     </div>
  38.     <div class="newsPageArticleContainer">
  39.       {% for news in data %}
  40.         <a {% include "pages/news/_link.html.twig" %}>
  41.         {# thumbnail #}
  42.         {% if news.hasThumbnailImage %}
  43.           <img src="{{ path("news_image", {"filename": news.getThumbnailRemote}) }}" alt="{{ news.title }}">
  44.         {% else %}
  45.           <img src="{{ asset('images/no-image.jpg') }}" alt="{{ news.title }}">
  46.         {% endif %}
  47.         <div class="newsPageArticleContainerButtonItems">
  48.           <time>
  49.             {{ news.entryDate|date('Y.m.d') }}
  50.           </time>
  51.           <h1>
  52.             {{ news.trans('title') }}
  53.           </h1>
  54.           <p>
  55.             {{ news.trans('content')|strim_width(83) }}
  56.           </p>
  57.           <span>
  58.             {{ news.category.trans('name') }}
  59.           </span>
  60.         </div>
  61.       </a>
  62.       {% endfor %}
  63.     </div>
  64.     {% include "components/_pagination.html.twig" with [paginate] %}
  65.     <div class="buttonContainer">
  66.       <a href="/" class="buttonContainer__back spaceleft">
  67.         <span></span>
  68.         {{'common.return' |trans|raw}}
  69.       </a>
  70.     </div>
  71.   </section>
  72.   </main>
  73. {% endblock %}