Home

Awesome

pyrocms-mailchimp

MailChimp integration for PyroCMS

Developt by: @centerax https://github.com/centerax

Translate in

pyro-list-field

A List field type for PyroCMS

Screen Shot 2013-02-13 at 2 28 35 PM

Features

Usage

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>

To Do