MailChimp integration for PyroCMS
Developt by: @centerax https://github.com/centerax
- English @centerax,
- Italian @ChristianGiupponi and
- French @mamarmite
A List field type for PyroCMS
- Generates an array of items to be pushed into a list of any kind
- Has enter mapped to the submit item
- Remove items easily
This plugin stores 2 things, a key(the index of the item) and the value(value of the input).
<ul>
{{ my_field_slug }}
<li class="item{{ key }}">{{ value }}</li>
{{ /my_field_slug }}
</ul>
If there was 3 items, this would output:
<ul>
<li class="item0">Item String Value</li>
<li class="item1">Item String Value</li>
<li class="item2">Item String Value</li>
</ul>
- Add sorting/ordering
- Allow child list items
- List to string instead of just array
- Allow styling/classes/odd and even
- Allow links (url, target, title etc.)
- Allow setting of key (index or string etc.)