11 lines
230 B
Plaintext
11 lines
230 B
Plaintext
<!doctype html>
|
|
<title>Page title</title>
|
|
<p>Hi</p>
|
|
|
|
<ul>
|
|
{% for tag in collections.colors | log %}
|
|
{% capture tagUrl %}/tags/{{ tag | slugify }}/{% endcapture %}
|
|
<li><a href="{{ tagUrl }}">{{ tag }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|