nw-card.html 345 B

12345678910
  1. <div class="card">
  2. <h2 class="h3">{{ header }}</h2>
  3. <i class="icon icon-card {{ icon }}"></i>
  4. <p class="hidden">{{ description }}</p>
  5. <div class="card-hidden">
  6. <!-- avoid the escaping which would happen with:
  7. <a ng-href="#/notes/{{id}}">{{ body }}</a> -->
  8. <a ng-href="#/notes/{{id}}" ng-bind-html="body"></a>
  9. </div>
  10. </div>