2019-09-30 15:38:41 +03:00
|
|
|
<!--
|
|
|
|
The Search results
|
|
|
|
-->
|
2019-12-31 18:17:27 +03:00
|
|
|
<div id="search-result-wrapper" class="d-flex justify-content-center unloaded">
|
|
|
|
<div class="col-12 col-xl-11 post-content">
|
|
|
|
<div id="search-hints">
|
2021-01-23 22:02:19 +03:00
|
|
|
<h4 class="text-muted mb-4">{{ site.data.label.panel.trending_tags | default: 'Trending Tags' }}</h4>
|
2020-07-22 16:41:49 +03:00
|
|
|
|
2020-06-03 17:49:28 +03:00
|
|
|
{% include trending-tags.html %}
|
2020-07-22 16:41:49 +03:00
|
|
|
|
2020-05-13 16:13:33 +03:00
|
|
|
{% for tag in trending_tags %}
|
2020-12-11 18:05:36 +03:00
|
|
|
{% capture url %}/tags/{{ tag | slugify | url_encode }}/{% endcapture %}
|
2020-05-13 16:13:33 +03:00
|
|
|
<a class="post-tag" href="{{ url | relative_url }}">{{ tag | replace: '-', ' ' }}</a>
|
2020-07-22 16:41:49 +03:00
|
|
|
{% endfor %}
|
|
|
|
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
2019-12-31 18:17:27 +03:00
|
|
|
<div id="search-results" class="d-flex flex-wrap justify-content-center text-muted mt-3"></div>
|
2019-09-30 15:38:41 +03:00
|
|
|
</div>
|
2020-12-11 18:05:36 +03:00
|
|
|
</div>
|