JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://cdn.ractivejs.org/edge/ractive.js"></script>
<main></main>

<script id="thumbnail-tmpl" type="text/ractive">
    {{#each items}}
        {{#if advertised}}
            <div class="thumb advertised">
                <span class="thumb-caption">
                    {{title}}
                    <small>{{subtitle}}</small>
                </span>
            </div>
        {{else}}
            <div class="thumb">
                <span class="thumb-caption">
                    {{title}}
                    <small>{{subtitle}}</small>
                </span>
            </div>
        {{/if}}
    {{/each}}
</script>

CSS

body {
    font-family: 'Helvetica Neue', arial, sans-serif;
    font-weight: 200;
    color: #353535;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 200;
}

.error {
    color: #d00;
    font-family: monospace;
}

.advertised {
    font-weight: bold;
}

JavaScript

var collections = [
    { "title": "Horse",
     "subtitle": "Na~~",
     "advertised": false
    },
    { "title": "Turkey",
     "subtitle": "Gobble",
     "advertised": false
    },
    { "title": "Goat",
     "subtitle": "Baaaa",
     "advertised": false
    },
    { "title": "Snake",
     "subtitle": "hissssss",
     "advertised": false
    }
];



var items = collections;

// sort items - advertised first (if the returned value
// from this function is less than 0, `a` will come
// before `b` in the sorted array)


var ractive = new Ractive({
    el: 'main',
    template: '',
    data: {
        items: items
    }
});