2017-11-15 20:43:31 +01:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
---
|
|
|
|
|
|
|
|
{% if page.header.overlay_color or page.header.overlay_image or page.header.image %}
|
|
|
|
{% include page__hero.html %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% if page.url != "/" and site.breadcrumbs %}
|
|
|
|
{% unless paginator %}
|
|
|
|
{% include breadcrumbs.html %}
|
|
|
|
{% endunless %}
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<div id="main" role="main">
|
|
|
|
{% include sidebar.html %}
|
|
|
|
|
|
|
|
<div class="archive">
|
|
|
|
{% unless page.header.overlay_color or page.header.overlay_image %}
|
2018-03-20 17:38:54 +01:00
|
|
|
<h1 id="page-title" class="page__title">{{ page.title }}</h1>
|
2017-11-15 20:43:31 +01:00
|
|
|
{% endunless %}
|
|
|
|
|
|
|
|
{{ content }}
|
|
|
|
|
2018-02-16 20:20:42 +01:00
|
|
|
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
|
|
|
{%- case search_provider -%}
|
|
|
|
{%- when "lunr" -%}
|
2021-06-23 14:27:06 +02:00
|
|
|
<input type="text" id="search" class="search-input" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
2018-02-16 20:20:42 +01:00
|
|
|
<div id="results" class="results"></div>
|
2018-05-15 20:42:10 +02:00
|
|
|
{%- when "google" -%}
|
2018-12-03 14:38:33 +01:00
|
|
|
<form onsubmit="return googleCustomSearchExecute();" id="cse-search-box-form-id">
|
2021-06-23 14:27:06 +02:00
|
|
|
<input type="text" id="cse-search-input-box-id" class="search-input" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
2018-05-15 20:42:10 +02:00
|
|
|
</form>
|
|
|
|
<div id="results" class="results">
|
2018-05-15 20:46:03 +02:00
|
|
|
<gcse:searchresults-only></gcse:searchresults-only>
|
2018-05-15 20:42:10 +02:00
|
|
|
</div>
|
2018-02-16 20:20:42 +01:00
|
|
|
{%- when "algolia" -%}
|
|
|
|
<div class="search-searchbar"></div>
|
|
|
|
<div class="search-hits"></div>
|
|
|
|
{%- endcase -%}
|
2017-11-15 20:43:31 +01:00
|
|
|
</div>
|
2018-12-03 14:38:33 +01:00
|
|
|
</div>
|