Advertisement
Guest User

template.html

a guest
Apr 25th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.21 KB | None | 0 0
  1. <table>
  2.     <tr>
  3.         <th>Name</th>
  4.         <th>Job Title</th>
  5.         <th>Website</th>
  6.     </tr>  
  7.     {{#results}}
  8.     <tr>
  9.         <!-- {{.}} -->
  10.         <td>{{name}}</td>
  11.         <td>{{job}}</td>
  12.         <td>{{website}}</td>
  13.     </tr>
  14.     {{/results}}
  15. </table>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement