Skip to content

Instantly share code, notes, and snippets.

View adamstallard's full-sized avatar

Adam Stallard adamstallard

View GitHub Profile
@adamstallard
adamstallard / hello.xml
Created September 1, 2012 18:11
Modest Module Usage
<p>Hello!</p>
@adamstallard
adamstallard / modest_example1.js
Created August 19, 2012 06:33
Modest javascript example 1
$contacts = $('#contacts');
_.each(contacts, function(contact){
$contacts.append(modest.render('contact',contact));
};
@adamstallard
adamstallard / modest_demo_element.html
Last active October 8, 2015 21:38
Modest demo elements go away when compiled.
<div id="contacts">
<!-- using data from the file 'bob' -->
<contact data="bob" dummy="true"/>
<!-- or entering data as semantic tags -->
<contact demo="true">
<name>jim</name>
<phonenumber>123-456-7890</phonenumber>
</contact>
</div>