I\'m writing a site in Jekyll, which uses Liquid.
I have front matter for pages that I\'d like to look like this:
---
title: Designing algorithms tha
{% for link in page.links %}
{% for item in link %}
{{ link[1] }}
{% endfor %}
{% endfor %}
I had a very similar issue, but I had multiple items in my variable so I used the undocumented item variable and it did the job.