2019-12-31 18:17:27 +03:00
|
|
|
<!--
|
|
|
|
Jekyll Simple Search loader
|
2021-02-04 18:08:09 +03:00
|
|
|
See: <https://github.com/christian-fei/Simple-Jekyll-Search>
|
2019-12-31 18:17:27 +03:00
|
|
|
-->
|
|
|
|
|
|
|
|
{% capture result_elem %}
|
2023-09-08 17:48:37 +03:00
|
|
|
<article class="px-1 px-sm-2 px-lg-4 px-xl-0">
|
|
|
|
<header>
|
|
|
|
<h2><a href="{url}">{title}</a></h2>
|
|
|
|
<div class="post-meta d-flex flex-column flex-sm-row text-muted mt-1 mb-1">
|
|
|
|
{categories}
|
|
|
|
{tags}
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<p>{snippet}</p>
|
|
|
|
</article>
|
2019-12-31 18:17:27 +03:00
|
|
|
{% endcapture %}
|
|
|
|
|
2023-05-06 02:22:29 +03:00
|
|
|
{% capture not_found %}<p class="mt-5">{{ site.data.locales[include.lang].search.no_results }}</p>{% endcapture %}
|
2019-12-31 19:18:21 +03:00
|
|
|
|
2019-12-31 18:17:27 +03:00
|
|
|
<script>
|
2023-03-22 20:29:17 +03:00
|
|
|
/* Note: dependent library will be loaded in `js-selector.html` */
|
|
|
|
SimpleJekyllSearch({
|
|
|
|
searchInput: document.getElementById('search-input'),
|
|
|
|
resultsContainer: document.getElementById('search-results'),
|
|
|
|
json: '{{ '/assets/js/data/search.json' | relative_url }}',
|
|
|
|
searchResultTemplate: '{{ result_elem | strip_newlines }}',
|
|
|
|
noResultsText: '{{ not_found }}',
|
|
|
|
templateMiddleware: function(prop, value, template) {
|
|
|
|
if (prop === 'categories') {
|
|
|
|
if (value === '') {
|
|
|
|
return `${value}`;
|
|
|
|
} else {
|
|
|
|
return `<div class="me-sm-4"><i class="far fa-folder fa-fw"></i>${value}</div>`;
|
|
|
|
}
|
2021-02-04 18:08:09 +03:00
|
|
|
}
|
|
|
|
|
2023-03-22 20:29:17 +03:00
|
|
|
if (prop === 'tags') {
|
|
|
|
if (value === '') {
|
|
|
|
return `${value}`;
|
|
|
|
} else {
|
|
|
|
return `<div><i class="fa fa-tag fa-fw"></i>${value}</div>`;
|
|
|
|
}
|
2021-02-04 18:08:09 +03:00
|
|
|
}
|
|
|
|
}
|
2023-03-22 20:29:17 +03:00
|
|
|
});
|
2021-01-18 18:27:43 +03:00
|
|
|
</script>
|