dosisod 4f17b3d901 Replace "style=display:none" with HTML data tags:
When storing metadata in an HTML node, you can use data attributes, which is
more declarative, and doesn't require rendering an invisible node.

See: https://developer.mozilla.org/en-US/docs/Learn/HTML/Howto/Use_data_attributes
2022-07-01 19:15:30 -07:00

6 lines
136 B
HTML

<ul id=artlist>
{{range.Site.RegularPages}}
<li data-tags="{{.Params.Tags}}"><a href="{{.Permalink}}">{{.Title}}</a></li>
{{end}}
</ul>