Leeflets / leeflets

Beautifully Simple Websites
128 stars 29 forks source link

Issues with repeatable element in custom theme. #97

Open ghost opened 11 years ago

ghost commented 11 years ago

So I've built a custom theme with a repeatable element which worked fine in earlier versions of Leeflets. But recently I downloaded the newest version and it now won't let me add more than one object in that repeatable element. Here's the meta-content.php:

<?php
$content = array(
    'projects' => array(
        'type' => 'repeatable',
        'title' => 'Projects',
        'description' => 'Projects go here.',
        'elements' => array(
            'icon' => array(
                'type' => 'image',
                'label' => 'Icon',
                'versions' => array(
                    'icon' => array(
                        'width' => 250,
                        'height' => 150,
                        'crop' => array( 'center', 'center' )
                    )
                )
            ),
            'link' => array(
                'type' => 'text',
                'label' => 'Project Link'
            )
        )
    )
);
?>