We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db0e2d commit 8a46286Copy full SHA for 8a46286
_includes/search-results.html
@@ -8,8 +8,13 @@
8
<div id="search-result-wrapper" class="d-flex justify-content-center unloaded">
9
<div class="col-12 col-xl-11 post-content">
10
<div id="search-hints">
11
- <h4 class="text-muted">{{ site.data.label.panel.trending_tags }}</h4>
+ <h4 class="text-muted mb-4">{{ site.data.label.panel.trending_tags }}</h4>
12
{% include trending-tags.html %}
13
+ {% for tag in trending_tags %}
14
+ {% capture url %}/tags/{{ tag | downcase | url_encode }}/{% endcapture %}
15
+ <a class="post-tag" href="{{ url | relative_url }}">{{ tag | replace: '-', ' ' }}</a>
16
+ {% endfor %}
17
+ </div>
18
</div>
19
<div id="search-results" class="d-flex flex-wrap justify-content-center text-muted mt-3"></div>
20
0 commit comments