I have created a templatetag that loads a yaml document into a python list. In my template I have {% get_content_set %}
, this dumps the raw list data. What I want to be able to do is something like
{% for items in get_content_list %}
<h2>{{items.title}}</h2>
{% endfor %}`