Created
March 9, 2015 17:50
-
-
Save jiverson/04adf89d4526a03b12f4 to your computer and use it in GitHub Desktop.
Css Bootstrap
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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