Skip to content

Commit

Permalink
Wrap tags on tag page (#30)
Browse files Browse the repository at this point in the history
Remove style from `div` to honor css.
Fixes #1380.
  • Loading branch information
jquorning authored Aug 24, 2023
1 parent f22d61d commit b21c6ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ ul {
{% assign top_popular_tags = sorted_popular_tags | slice: 0, page.popular_count %}

### Top {{ page.popular_count }} Tags
<div style="white-space: nowrap;">
<div>
{% for tag in top_popular_tags %}
{% assign tagitems = tag | split: '#' %}
{% assign name = tagitems[1] %}
Expand Down Expand Up @@ -77,7 +77,7 @@ ul {

{% if filtered_list.size > 0 %}
<b>{{ letter }}</b>
<div style="white-space: nowrap;">
<div>
{% for tag in filtered_list %}
<a class="crate-tag-link" href="javascript:void(0)" onclick="javascript:filter_ul('tag-{{ tag }}')">#{{ tag }}</a>{% endfor %}
</div>
Expand Down

0 comments on commit b21c6ca

Please sign in to comment.