Showing cards within a view

Hello,
I am trying show cards(link below) within a view. Eventually those cards with be updated and more cards will be added.

this is the code of the parent view. I am very new to ionic and would really appreciate if I can get help with this.

...
Sort By
All Title Speaker Description Room
          </select>
      </label>
      <ion-item ng-repeat="session in sessions | filter:search | orderBy: field" type="item-text-wrap"
                class="item-avatar"
                href="#/app/sessions/{{session.id}}"><img src="pics/{{session.pic}}"/>
                <p class="title">{{session.title}}</p>
      </ion-item>
      CARDS ADD HERE
  </ion-list>

Thank you