You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
585 B
19 lines
585 B
@using System.Web.Http
|
|
@using ICSSoft.WebAPI.Areas.HelpPage.ModelDescriptions
|
|
@model ModelDescription
|
|
|
|
<link type="text/css" href="~/Areas/HelpPage/HelpPage.css" rel="stylesheet" />
|
|
<div id="body" class="help-page">
|
|
<section class="featured">
|
|
<div class="content-wrapper">
|
|
<p>
|
|
@Html.ActionLink("Help Page Home", "Index")
|
|
</p>
|
|
</div>
|
|
</section>
|
|
<h1>@Model.Name</h1>
|
|
<p>@Model.Documentation</p>
|
|
<section class="content-wrapper main-content clear-fix">
|
|
@Html.DisplayFor(m => Model)
|
|
</section>
|
|
</div>
|