Skip to content

Instantly share code, notes, and snippets.

@satsalou
Last active March 31, 2016 15:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save satsalou/45a7d12297c159d5315c to your computer and use it in GitHub Desktop.
Save satsalou/45a7d12297c159d5315c to your computer and use it in GitHub Desktop.
<ion-view view-title="Movies">
<ion-content>
<div ng-repeat="movie in movies">
<div class="card">
<div class="item item-text-wrap item-thumbnail-left">
<img ng-src="{{movie.thumb}}">
<h2>{{movie.title}}</h2>
<p>{{movie.body}}</p>
</div>
</div>
</div>
</ion-content>
</ion-view>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment