Location names now listed with #commaList instead of #each.
[mkws-moved-to-github.git] / examples / htdocs / mike.html
index 6e15b2e..ca2da46 100644 (file)
        {{#if md-electronic-url}}
        <tr>
          <th>URL</th>
-         <td>{{#link md-electronic-url}}{{/link}}</td>
+         <td>
+           {{#each md-electronic-url}}
+             <a href="{{this}}">{{this}}</a><br/>
+           {{/each}}
+         </td>
        </tr>
        {{/if}}
+       {{#if-any location having="md-subject"}}
        <tr>
          <th>Subject</th>
-         <td>{{md-subject}}</td>
+         <td>
+           {{#first location having="md-subject"}}
+             {{#if md-subject}}
+               {{md-subject}}
+             {{/if}}
+           {{/first}}
+         </td>
        </tr>
+       {{/if-any}}
        <tr>
          <th>Locations</th>
-         <td>{{location}}</td>
+         <td>
+           {{#commaList location}}
+             {{attr '@name'}}{{/commaList}}
+         </td>
        </tr>
       </table>
     </script>