summaryrefslogtreecommitdiff
path: root/layouts
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2022-05-26 23:58:53 +0000
committerGitHub <noreply@github.com>2022-05-26 23:58:53 +0000
commitb7f117cf4c59c0360156de16c2ba1c1ebd5602f0 (patch)
tree0758bdddf8d01e58fda5dff4f77ca87ff2a8993f /layouts
parent0a837fb26acfa5c1ba8d910984d19963f1e0cfa4 (diff)
Filter Articles with a Javascript Search (#772)
* for lugo changes * quick search through recipes * Update content/_index.md Co-authored-by: Steven Hall <Hallzy.18@gmail.com> * Update content/_index.md Co-authored-by: Steven Hall <Hallzy.18@gmail.com> * when searching, list one column, big results * Update content/_index.md Co-authored-by: Steven Hall <Hallzy.18@gmail.com> * Update content/_index.md Co-authored-by: Steven Hall <Hallzy.18@gmail.com> * Update content/_index.md Co-authored-by: Steven Hall <Hallzy.18@gmail.com> * change for my naming * remove for fix * redundant * hide tags in items so search sees tags * last superficial changes Co-authored-by: Steven Hall <Hallzy.18@gmail.com>
Diffstat (limited to 'layouts')
-rw-r--r--layouts/shortcodes/artlist.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/shortcodes/artlist.html b/layouts/shortcodes/artlist.html
index ef3eeb8..fa7a62e 100644
--- a/layouts/shortcodes/artlist.html
+++ b/layouts/shortcodes/artlist.html
@@ -1,5 +1,5 @@
<ul id=artlist>
{{range.Site.RegularPages}}
-<li><a href="{{.Permalink}}">{{.Title}}</a></li>
+<li><a href="{{.Permalink}}">{{.Title}}<span style="display:none">{{.Params.Tags}}</span></a></li>
{{end}}
</ul>