ember-cli-materialize
                                
                                 ember-cli-materialize copied to clipboard
                                
                                    ember-cli-materialize copied to clipboard
                            
                            
                            
                        Add the ability to display content on the left side of the navbar (like logo image)
@yonida thanks for opening this ticket. Do you have a proposed syntax?
instead of doing this:
<div class='container'>
    {{#link-to homeRoute class='brand-logo'}}{{name}}{{/link-to}}
    <ul class='right hide-on-med-and-down'>
      {{yield}}
    </ul>
</div>
maybe let the user implement the inner content, without constraining him to the right side. something like:
<div class='container'>
    {{#link-to homeRoute class='brand-logo'}}{{name}}{{/link-to}}
    {{yield}}
</div>