-
Notifications
You must be signed in to change notification settings - Fork 0
/
admin.html
26 lines (26 loc) · 1.12 KB
/
admin.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<div id="admin" class="admin" ng-show="isAdmin" ng-cloak>
<div class="container">
<div class="row">
<!-- the editor -->
<div class="col-lg-12">
<form name="articleForm" role="form" ng-submit="updateArticle(article.thread_id)">
<div class="form-group title-group">
<input type="text" ng-model="article.title" class="form-control" placeholder="文章标题" required>
</div>
<div id="core-editor" class="editor-wrapper clearfix">
<editor-ninja ng-model="article.content"></editor-ninja>
<button class="submit btn" type="submit">写好了</button>
<a class="remove btn btn-danger" ng-show="article.thread_id" ng-click="removeArticle(article.thread_id)" ng-cloak>删除这篇文章</a>
</div>
</form>
</div>
<!-- add-on directives -->
<div class="col-lg-12">
<div id="add-ons" class="add-ons clearfix">
<!-- <div meta-share ng-model="article.meta.share"></div> -->
<div meta-background ng-model="article.meta.background"></div>
</div>
</div>
</div>
</div>
</div>