<div class="content">
<table class="ui selectable celled table">
  <thead>
    <tr>
      <th>Name</th>
      <th>Value</th>
    </tr>
  </thead>
  <tbody>
    {{#each-in content as |key value|}}
    <tr>
      <td>{{key}}</td>
      <td>{{value}}</td>
    </tr>
    {{/each-in}}
  </tbody>
</table>
</div>
