hugo-theme-next/layouts/partials/post/header_meta/words.html
elkan1788 25aff95260 🐛 Fixed the font icon error, Resolved #134
Because the offical fontawsome had update the font size, there will use new class of icon reference.
2023-12-31 08:23:15 +08:00

9 lines
369 B
HTML

{{ if .Site.Params.postMeta.wordCount }}
<span class="post-meta-item" title="{{ T "PostMeta.words.title" }}">
<span class="post-meta-item-icon">
<i class="fas fa-solid fa-file-word"></i>
</span>
<span class="post-meta-item-text">{{ print (T "PostMeta.words.title") (T "Symbol.colon") }}</span>
<span>{{ T "PostMeta.words.count" . }}</span>
</span>
{{ end }}