{ "$jason": { "head": { "title": "Utomik game browser", "actions": { "$load": { "type": "$network.request", "options": { "url": "https://api.utomik.com/v1/applications" }, "success": { "type": "$render" } } }, "templates": { "body": { "style": { "border": "none" }, "sections": [ { "header": { "type": "label", "text": "Utomik games! Tap on a game to view details about it.", "style": { "background": "#f5f5f5", "padding": "20" } }, "items": { "{{#each $jason.sort(function(a,b){if(a.name.en.toLowerCase() < b.name.en.toLowerCase()){return -1}if(a.name.en.toLowerCase() > b.name.en.toLowerCase()){return 1}return 0})}}": { "type": "horizontal", "style": { "padding": "10", "spacing": "10" }, "components": [ { "type": "image", "style": { "width": "50" }, "url": "{{var img = images.find(function(x){return x.tag === 'BI';}); return (img !== undefined ? img.download_url : undefined)}}" }, { "type": "label", "style": { "size": "14" }, "text": "{{name.en}}" } ], "action": { "type": "$util.alert", "options": { "title": "{{name.en}}", "description": "{{excerpt.en}}" } } } } } ] } } } } }