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