templates/pages/facility/filter.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('facility_filter')) }}">
  15. {% endblock %}
  16. {% block body %}
  17. <main id="workspace">
  18.   <section class="guide">
  19.     <div class="guideContainer">
  20.       <div class="guideContainer__breadcrumbs">
  21.         <a href="{{ path('top') }}">TOP</a>
  22.         <span class="guideContainerBreadcrumbs__arrow"></span>
  23.         <a href="{{ absolute_url(path('facility_index')) }}">{{ 'facility.index.title'|trans }}</a>
  24.         <span class="guideContainerBreadcrumbs__arrow"></span>
  25.         <div>{{ 'common.filter.title'|trans }}</div>
  26.       </div>
  27.     </div>
  28.   </section>
  29.   <form action="{{ path('facility_index') }}">
  30.     <section class="search filterPage">
  31.       <div class="searchInfoContainer">
  32.         <div class="searchInfoContainer__headline">
  33.           <h1>{{ 'common.filter.criteria_refine'|trans }}</h1>
  34.         </div>
  35.       </div>
  36.       {% if filter.Area.choice %}<input type="hidden" name="area" value="{{ filter.Area.choice }}">{% endif%}
  37.       {% include "components/entry/index/_filter_element_target.html.twig" with {
  38.         title: 'common.filter.group_target'|trans,
  39.         filter: filter.Target,
  40.         name: "target[]"
  41.       } %}
  42.       {% include "components/entry/index/_filter_element_multiple.html.twig" with {
  43.         title: 'common.filter.group_equipment'|trans,
  44.         filter: filter.Service,
  45.         name: "service[]"
  46.       } %}
  47.       {% include "components/entry/index/_filter_element_multiple.html.twig" with {
  48.         title: 'common.filter.group_telework'|trans,
  49.         filter: filter.Equipment,
  50.         name: "equipment[]",
  51.         last: true
  52.       } %}
  53.       {% include "components/entry/index/_filter_button_container.html.twig" with {
  54.         back_path: path('facility_index', query)
  55.       } %}
  56.     </section>
  57.   </form>
  58. </main>
  59. {% endblock %}