This commit is contained in:
Paul Schneider 2017-01-20 14:20:44 +01:00
commit 23dc3c3f19
11 changed files with 1770 additions and 91 deletions

View 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>