mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
10 lines
168 B
Plaintext
10 lines
168 B
Plaintext
<ul>
|
|
{%- for person in people %}
|
|
<li>
|
|
<a href="{{person | prepend: "https://example.com/"}}">
|
|
{{ person | capitalize }}
|
|
</a>
|
|
</li>
|
|
{%- endfor%}
|
|
</ul>
|