default.txt 301 B

123456789
  1. <div class="entry">
  2. {{!-- only output this author names if an author exists --}}
  3. {{#if author}}
  4. {{#playwright-wrapper playwright=author action=(mut author) as |playwright|}}
  5. <h1>{{playwright.firstName}} {{playwright.lastName}}</h1>
  6. {{/playwright-wrapper}}
  7. {{/if}}
  8. {{yield}}
  9. </div>