Created
March 8, 2015 07:14
-
-
Save josdirksen/d498c91af21e0ec0743c to your computer and use it in GitHub Desktop.
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="row"> | |
<div class="large-12 columns"> | |
<div class="panel"> | |
<h3>{{title}}</h3> | |
<p>Counter from interval: {{count}}</p> | |
<div> | |
<progressbar value="count / 100"/> | |
</div> | |
<div class="row"> | |
<div><div class="large-4 medium-4 columns tile" ng-include="'templates/tile.html'"/></div> | |
<div><div class="large-4 medium-4 columns tile" ng-include="'templates/tile.html'"/></div> | |
<div><div class="large-4 medium-4 columns tile" ng-include="'templates/tile.html'"/></div> | |
</div> | |
</div> | |
</div> | |
</div> | |
<div class="row"> | |
<div class="large-12 medium-12 columns"> | |
<h5>Repeating angular shizzle</h5> | |
<!-- Grid Example --> | |
<div class="row"> | |
<div ng-repeat="val in anotherScope"> | |
<div class="large-3 columns"> | |
<div class="callout panel"> | |
<p><strong>Value from ng-repeat: {{val + "" | double}}</strong></p> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment