aboutsummaryrefslogtreecommitdiff
path: root/templates/index.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/index.html')
-rw-r--r--templates/index.html7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/index.html b/templates/index.html
index 9291987..f5821fc 100644
--- a/templates/index.html
+++ b/templates/index.html
@@ -29,7 +29,12 @@
29 <meta itemprop="name" content="Notes?! Maybe useful"> 29 <meta itemprop="name" content="Notes?! Maybe useful">
30 {{ range .Pages }} 30 {{ range .Pages }}
31 {{ if and (eq .Type "note") (not .Draft) }} 31 {{ if and (eq .Type "note") (not .Draft) }}
32 <li><a href="{{ .RelPermalink }}">{{ .Title }}</a></li> 32 <li>
33 {{ range .Meta.tags }}
34 <mark>{{ . }}</mark>
35 {{ end }}
36 <a href="{{ .RelPermalink }}">{{ .Title }}</a>
37 </li>
33 {{ end }} 38 {{ end }}
34 {{ end }} 39 {{ end }}
35 </ul> 40 </ul>