Header with image horizontal aligned to the left

I want to create a header using ionic framework.
It will show an image and 2 buttons. The image has to be aligned horizontally to the left and the 2 buttons to the right. The next code show everything, but the image is centered, is it posible to align the image to the left?

<ion-view title='<img class="title-image" src="img/logo_elizondo_ch.png" />'>
    <ion-nav-buttons side="right" >
      <button class="button" ng-click="doSomething()">
        Right
      </button>
      <button class="button" ng-click="doSomething()" >
        Right 2
      </button>
    </ion-nav-buttons>
  <ion-content>
    <ion-list>
      <ion-item ng-repeat="playlist in playlists" href="#/app/playlists/{{playlist.id}}">
        {{playlist.title}}
      </ion-item>
    </ion-list>
  </ion-content>
</ion-view>