Skip to content

Instantly share code, notes, and snippets.

@robwormald
Created December 10, 2013 02:22
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 robwormald/7884822 to your computer and use it in GitHub Desktop.
Save robwormald/7884822 to your computer and use it in GitHub Desktop.
<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