I am a noice programmer and new to the Ionic Framework and Angular.js. I am developing a mobile app using Ionic primarily "out of the box". But, I'd like to display an Ionic list that combines a:
- checkbox
- item content (e.g. string of text)
- avatar (i.e. an image associated with the item)
See mockup below...

A streamlined example of the HTML markup looks like this:
<ion-pane>
<ion-header-bar class="bar-stable">
<h1 class="title">Combine Checkbox & Avatar in List</h1>
</ion-header-bar>
<ion-content>
<ul class="list">
<li class="item item-checkbox item-avatar-right">
<label class="checkbox">
<input type="checkbox">
</label>
<img src="http://placehold.it/100x100">
Item #1
</li>
<li class="item item-checkbox item-avatar-right">
<label class="checkbox">
<input type="checkbox">
</label>
<img src="http://placehold.it/100x100">
Item #2
</li>
</ul>
</ion-content>
</ion-pane>
But the page is displayed like so:

My questions:
- Does the Ionic Framework support this combination (combining a checkbox and an avatar image in a list item)?
- If so, what markup or code (HTML, CSS, JS) can I use to render this type of display?
You can see code with a simple example here:
Appreciate guidance and direction from the Stackoverflow community!
