Skip to content

Instantly share code, notes, and snippets.

@jiverson
Created March 9, 2015 17:50
Show Gist options
  • Save jiverson/04adf89d4526a03b12f4 to your computer and use it in GitHub Desktop.
Save jiverson/04adf89d4526a03b12f4 to your computer and use it in GitHub Desktop.
Css Bootstrap
<div class="span8 offset2">
<div class="row-fluid" ng-repeat="graph in graphsModel track by $index" ng-if="$index%2==0">
<div class="span6">
<img width="500px" ng-src="{{graphsModel[$index].url}}">
</div>
<div class="span6">
<img width="500px" ng-src="{{graphsModel[$index + 1].url}}">
</div>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment