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 5f56604 commit 9fb9f6dCopy full SHA for 9fb9f6d
src/_includes/css/post.css
@@ -23,14 +23,18 @@
23
margin: 0;
24
}
25
26
- & p:nth-child(-n+2)::after {
+ & p::after {
27
content: "•";
28
padding-left: 0.5em;
29
align-self: stretch;
30
31
32
& p:last-of-type {
33
margin-right: 0.5em;
34
+
35
+ &::after {
36
+ display: none;
37
+ }
38
39
40
& a {
src/_includes/templates/post-details.vto
@@ -16,6 +16,7 @@
16
17
<p>{{ it.readingInfo.minutes }} {{ i18n.post.reading_time}}</p>
18
19
+ {{ if tags?.length }}
20
<div class="post-tags">
21
{{ for tag of tags }}
22
{{ set page = search.page(`type=tag tag="${tag}"`) }}
@@ -25,4 +26,5 @@
{{ /if }}
{{ /for }}
</div>
+ {{ /if }}
0 commit comments