dpl-liquid tag


Reactive inline data

The tag...
    <dpl-liquid data="{'name': 'Little John'}"><div>
        Hello {{data.name}}
        <pre>{{data|json}}</pre>
    </div></dpl-liquid>
...renders... testing

TESTING! 123...

Hello {{data.name}}
{{data|json}}
change the data model, button trigger a event handeled by the below script to set the data attribute of the tag set to new template...
<script> </script>

Remote data

the tag...
    <dpl-liquid queries="{'ip': 'http://ip.jsontest.com/'}">
        Returned by server: {{ip.ip}}
        <hr>
        <pre>{{ip|json}}</pre>
    </dpl-liquid>
...renders... Returned by server: {{ip.ip}}
{{ip|json}}