mirror of
https://github.com/Decentralized-ID/decentralized-id.github.io.git
synced 2024-10-01 01:05:54 -04:00
43 lines
1.5 KiB
HTML
43 lines
1.5 KiB
HTML
|
---
|
||
|
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 %}
|
||
|
<h1 id="page-title" class="page__title">{{ page.title }}</h1>
|
||
|
{% endunless %}
|
||
|
|
||
|
{{ content }}
|
||
|
|
||
|
{%- assign search_provider = site.search_provider | default: "lunr" -%}
|
||
|
{%- case search_provider -%}
|
||
|
{%- when "lunr" -%}
|
||
|
<input type="text" id="search" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
||
|
<div id="results" class="results"></div>
|
||
|
{%- when "google" -%}
|
||
|
<form onsubmit="return googleCustomSearchExecute();" id="cse-search-box-form-id">
|
||
|
<input type="text" id="cse-search-input-box-id" class="search-input" tabindex="-1" placeholder="{{ site.data.ui-text[site.locale].search_placeholder_text | default: 'Enter your search term...' }}" />
|
||
|
</form>
|
||
|
<div id="results" class="results">
|
||
|
<gcse:searchresults-only></gcse:searchresults-only>
|
||
|
</div>
|
||
|
{%- when "algolia" -%}
|
||
|
<div class="search-searchbar"></div>
|
||
|
<div class="search-hits"></div>
|
||
|
{%- endcase -%}
|
||
|
</div>
|
||
|
</div>
|