~caneypuggies/reformedchurcheslocator/couchapp-backbone

« back to all changes in this revision

Viewing changes to _attachments/js/vendor/mustache/test/_files/complex.mustache

  • Committer: Tim Black
  • Date: 2013-09-16 22:50:16 UTC
  • Revision ID: tim@alwaysreformed.com-20130916225016-zk8jiba25z33ew7h
Versioned Bower vendor directory

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<h1>{{header}}</h1>
 
2
{{#list}}
 
3
  <ul>
 
4
  {{#item}}
 
5
  {{#current}}
 
6
  <li><strong>{{name}}</strong></li>
 
7
  {{/current}}
 
8
  {{#link}}
 
9
  <li><a href="{{url}}">{{name}}</a></li>
 
10
  {{/link}}
 
11
  {{/item}}
 
12
  </ul>
 
13
{{/list}}
 
14
{{#empty}}
 
15
  <p>The list is empty.</p>
 
16
{{/empty}}