Last active
December 25, 2015 00:39
-
-
Save saiberz/46ece4efa5cdc0c57a83 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class='.users'> | |
<div class='.userBox'> | |
<div class='.userName'> Name1</div> | |
<div> | |
<div>SomeStuff</div> | |
<div class='.userEmail'> Email1</div> | |
</div> | |
<img src='path/to/image1'/> | |
</div> | |
<div class='.userBox'> | |
<div class='.userName'> Name2</div> | |
<div> | |
<div>SomeStuff</div> | |
<div class='.userEmail'> Email3</div> | |
</div> | |
<img src='path/to/image2'/> | |
</div> | |
<div class='.userBox'> | |
<div class='.userName'> Name3</div> | |
<div> | |
<div>SomeStuff</div> | |
<div class='.userEmail'> Email3</div> | |
</div> | |
<img src='path/to/image3'/> | |
</div> | |
<div/> | |
//////// | |
var users = [ | |
{name: 'Name1', email: 'Email1', image: 'path/to/image/1'}, | |
{name: 'Name2', email: 'Email2', image: 'path/to/image/2'}, | |
{name: 'Name3', email: 'Email3', image: 'path/to/image/3'}, | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
js