Skip to content

Instantly share code, notes, and snippets.

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 yamafaktory/beec0bc47fa8cf26e986e58ceaf19780 to your computer and use it in GitHub Desktop.
Save yamafaktory/beec0bc47fa8cf26e986e58ceaf19780 to your computer and use it in GitHub Desktop.
<div class="panel-body"
ng-if="resource.data.length > 7">
<div ng-include="helper.template('error')"></div>
<h2 class="category">{{topic.name[locale]}}</h2>
<div class="list-view">
<div class="card project"
ng-repeat="article in articles | orderBy:'l7dTitle'">
<a ng-href="{{helper.url('project/:topic/articles/:id', {topic: topic.key, id: article.id})}}"
ng-click="dialog()">
<h4>{{article.l7dTitle}}</h4>
</a>
</div>
</div>
</div>
<button class="save primary submit pull-right inline"
ng-click="save()"
ng-disabled="form.$invalid || resource.state == 'pending'"
<span localize="Save article"></span>
</button>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment