Created
December 10, 2013 02:22
-
-
Save robwormald/7884822 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="panel panel-default" ng-click="select(card)" ng-mouseover="showCardStatus(card)"> | |
<div class="panel-heading"> | |
<h5 class="panel-title" ng-bind="card.sections.header.title">Panel title</h4> | |
<p class="panel-title text-muted" ng-bind="card.sections.header.subtitle">Panel title</p> | |
</div> | |
<div class="panel-body" ng-include src="templateUrl">This text is replaced by the custom template...</div> | |
<div class="panel-footer" > | |
<div class="list-unstyled"> | |
<li ng-repeat="cardAction in card.sections.footer.actions"> | |
<button type="button" ng-click="cardAction.onClick()" class="btn btn-link"><strong ng-bind="cardAction.actionText">Button Text</strong></button> | |
</li> | |
</div> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment