Skip to content

Commit

Permalink
Remove unwanted spacing after tags in post header
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkudrna committed Jun 18, 2024
1 parent 66cf1cf commit 1d59b99
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions post.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
<div class="{{#has tag="#cover"}}cover__text{{/has}}">
<div class="container {{^has tag="#cover"}}container--article{{/has}}">

<div class="article__meta">
<div class="article__meta spacing-bottom-small">
<time datetime="{{date format="YYYY-MM-DD"}}">
{{date format="D. MMMM YYYY"}}
</time>
{{#if tags}}
<ul class="article__tags list-inline list-unstyled">
<ul class="article__tags list-inline list-unstyled spacing-bottom-none">
{{#foreach tags from="2"}}
<li>
<a
Expand All @@ -60,7 +60,9 @@
</ul>
{{/if}}
{{reading_time minute=(t "1 min read") minutes=(t "% min read")}}
<span class="text-nowrap">
{{reading_time minute=(t "1 min read") minutes=(t "% min read")}}
</span>
</div>

<h1 class="article__title js-nbsp">{{title}}</h1>
Expand Down

0 comments on commit 1d59b99

Please sign in to comment.