<!-- Want to layout the various templates here -->

<style>
  .margin-5 {
    margin: 5px;
  }
</style>



<ul>
  {{#each emails}}
    <li>
      <h2><a href="/mailer/{{templateName}}">{{title}}</a></h2>
      
      <div>
        <label>Subject: </label> {{ subject }}
      </div>

      <div>
        <label>Info: </label> {{ info }}
      </div>

      <div>{{body}}</div>
    </li>
  {{/each}}
</ul>