Skip to content

Instantly share code, notes, and snippets.

@bbraithwaite
Created February 9, 2015 02:01
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 bbraithwaite/e520ca890555a82fee0b to your computer and use it in GitHub Desktop.
Save bbraithwaite/e520ca890555a82fee0b to your computer and use it in GitHub Desktop.
<section data-ng-controller="CategoriesController" data-ng-init="findOne()">
<div class="page-header">
<h1 data-ng-bind="category.name"></h1>
<p data-ng-bind="category.description"></p>
</div>
<div class="pull-right">
<a class="btn btn-primary" href="/#!/categories/{{category._id}}/edit">
<i class="glyphicon glyphicon-edit"></i>
</a>
<a class="btn btn-primary" data-ng-click="remove();">
<i class="glyphicon glyphicon-trash"></i>
</a>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment