<dl>
  {{#each scopes}}
  <dt>Scope <strong>{{ this.name }}</strong></dt>
  <dd>
    {{> @x-message--single scope=this.name
        type="info" title="Info" content=this.content}}
    {{> @x-message--single scope=this.name
        type="success" title="Success" content=this.content}}
    {{> @x-message--single scope=this.name
        type="warning" title="Warning" content=this.content}}
    {{> @x-message--single scope=this.name
        type="error" title="Error" content=this.content}}
  </dd>
  {{#if (eq this.name "section")}}
  <dd>
    {{> @x-message--single scope=this.name
        type="info" title="Info" needs="icon" content=this.content}}
    {{> @x-message--single scope=this.name
        type="success" title="Success" needs="icon" content=this.content}}
    {{> @x-message--single scope=this.name
        type="warning" title="Warning" needs="icon" content=this.content}}
    {{> @x-message--single scope=this.name
        type="error" title="Error" needs="icon" content=this.content}}
  </dd>
  {{/if}}
  {{/each}}
</dl>
