web/_includes/search-results.html

20 lines
762 B
HTML
Raw Normal View History

2019-09-30 15:38:41 +03:00
<!--
The Search results
2020-01-02 16:17:49 +03:00
v2.0
https://github.com/cotes2020/jekyll-theme-chirpy
2019-09-30 15:38:41 +03:00
© 2017-2019 Cotes Chung
MIT License
-->
<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">
<h4 class="text-muted mb-4">{{ site.data.label.panel.trending_tags }}</h4>
{% include trending_tags.html %}
{% for tag in trending_tags %}
{% capture url %}/tags/{{ tag | downcase | url_encode }}/{% endcapture %}
<a class="post-tag" href="{{ url | relative_url }}">{{ tag | replace: '-', ' ' }}</a>
{% endfor %}
2019-09-30 15:38:41 +03:00
</div>
<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>
</div>