blog acl
This commit is contained in:
parent
32ca008d20
commit
23dc3c3f19
11 changed files with 1770 additions and 91 deletions
17
Yavsc/Views/Shared/DisplayTemplates/Blog.cshtml
Normal file
17
Yavsc/Views/Shared/DisplayTemplates/Blog.cshtml
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
@model Blog
|
||||
|
||||
|
||||
<dl class="blog dl-horizontal">
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Title)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Title)
|
||||
</dd>
|
||||
<dt>
|
||||
@Html.DisplayNameFor(model => model.Author)
|
||||
</dt>
|
||||
<dd>
|
||||
@Html.DisplayFor(model => model.Author)
|
||||
</dd>
|
||||
</dl>
|
||||
Loading…
Add table
Add a link
Reference in a new issue