{% extends 'base.html.twig' %}
{% block title %}最新情報 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_og_title %}最新情報 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_twitter_title %}最新情報 |【公式】「とこワク」は三重県のワーケーションポータルサイト{% endblock %}
{% block meta_description %}
{{ parent() }}
とこワクの情報を発信しています。ぜひチェックしてください。
{% endblock %}
{% block meta_og_description %}
{{ parent() }}
とこワクの情報を発信しています。ぜひチェックしてください。
{% endblock %}
{% block extraHeader %}
<link rel="canonical" content="{{ absolute_url(path('news_index')) }}">
{% endblock %}
{% block body %}
<main id="news">
<section class="guide">
<div class="guideContainer">
<div class="guideContainer__breadcrumbs">
<a href="/">{{'common.top' |trans|raw}}</a>
<span class="guideContainerBreadcrumbs__arrow"></span>
<div>{{'news.modelplan-report' |trans|raw}}</div>
</div>
</div>
</section>
<section class="newsPage">
<div class="newsPageTitleContainer">
<h1>{{'news.newsPage.title' |trans|raw}}</h1>
<div class="newsPageTitleContainer__category">
<a href="{{ path('news_index') }}" class="{% if not current_category %}active{% endif %}">{{ 'common.all'|trans }}</a>
{% for category in categories %}
<span></span>
<a href="{{ path('news_index') }}?category={{ category[0].id }}" class="{% if current_category == category[0].id %}active{% endif %}">{{ category[0].trans('name') }}</a>
{% endfor %}
</div>
</div>
<div class="newsPageArticleContainer">
{% for news in data %}
<a {% include "pages/news/_link.html.twig" %}>
{# thumbnail #}
{% if news.hasThumbnailImage %}
<img src="{{ path("news_image", {"filename": news.getThumbnailRemote}) }}" alt="{{ news.title }}">
{% else %}
<img src="{{ asset('images/no-image.jpg') }}" alt="{{ news.title }}">
{% endif %}
<div class="newsPageArticleContainerButtonItems">
<time>
{{ news.entryDate|date('Y.m.d') }}
</time>
<h1>
{{ news.trans('title') }}
</h1>
<p>
{{ news.trans('content')|strim_width(83) }}
</p>
<span>
{{ news.category.trans('name') }}
</span>
</div>
</a>
{% endfor %}
</div>
{% include "components/_pagination.html.twig" with [paginate] %}
<div class="buttonContainer">
<a href="/" class="buttonContainer__back spaceleft">
<span></span>
{{'common.return' |trans|raw}}
</a>
</div>
</section>
</main>
{% endblock %}