aboutsummaryrefslogtreecommitdiff
path: root/templates/note.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/note.html')
-rw-r--r--templates/note.html6
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/note.html b/templates/note.html
index ce72921..62ac5f0 100644
--- a/templates/note.html
+++ b/templates/note.html
@@ -20,7 +20,11 @@
20 {{ range .Pages | filterbytype "note" | random 15 }} 20 {{ range .Pages | filterbytype "note" | random 15 }}
21 {{ if not .Draft }} 21 {{ if not .Draft }}
22 <li> 22 <li>
23 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }} 23 {{ if .Meta.tags }}
24 <div class="tags">
25 {{ range .Meta.tags }}<mark>{{ . }}</mark>{{ end }}
26 </div>
27 {{ end }}
24 <a href="{{ .RelPermalink }}">{{ .Title }}</a> 28 <a href="{{ .RelPermalink }}">{{ .Title }}</a>
25 </li> 29 </li>
26 {{ end }} 30 {{ end }}