Skip to content
This repository was archived by the owner on Mar 9, 2022. It is now read-only.

Commit

Permalink
fix: fix css bug
Browse files Browse the repository at this point in the history
  • Loading branch information
dillonzq committed Aug 16, 2019
1 parent 9c796e0 commit 76e7475
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions layouts/posts/single.html
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ <h1 class="post-title">{{ .Title }}</h1>
</div>
<div class="post-meta-other">
<i class="far fa-calendar-alt"></i>&nbsp;
<span class="post-time"><time datetime={{ $publish_date }}>{{ $publish_date }}</time></span>
&nbsp;<i class="fas fa-pencil-alt"></i>&nbsp;
{{ T "wordCount" .WordCount }}
&nbsp;<i class="far fa-clock"></i>&nbsp;
{{ T "readingTime" .ReadingTime }}
<span class="post-time"><time datetime={{ $publish_date }}>{{ $publish_date }}</time></span>&nbsp;
<i class="fas fa-pencil-alt"></i>&nbsp;
{{ T "wordCount" .WordCount }}&nbsp;
<i class="far fa-clock"></i>&nbsp;
{{ T "readingTime" .ReadingTime }}&nbsp;
{{ if and .Site.Params.valine.enable .Site.Params.valine.visitor }}
<span id="{{ .RelPermalink | relURL }}" class="leancloud_visitors" data-flag-title="{{ .Title }}">
&nbsp;<i class="far fa-eye"></i>
<i class="far fa-eye"></i>
{{ T "pageviews" | safeHTML }}
</span>
{{ end }}
Expand Down

0 comments on commit 76e7475

Please sign in to comment.