mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 12:20:40 -07:00
12 lines
225 B
Plaintext
12 lines
225 B
Plaintext
{% assign people = "alice, bob, carol" | split: ", " -%}
|
|
|
|
<ul>
|
|
{%- for person in people %}
|
|
<li>
|
|
<a href="{{person | prepend: "http://example.com/"}}">
|
|
{{ person | capitalize }}
|
|
</a>
|
|
</li>
|
|
{%- endfor%}
|
|
</ul>
|