Files
OnDoc/API_NetFramework/Areas/HelpPage/Views/Help/Api.cshtml
Stefan Hutter ea8d48ac9e Update 20240719
2024-07-19 17:03:49 +02:00

23 lines
648 B
Plaintext

@using System.Web.Http
@using API_NetFramework.Areas.HelpPage.Models
@model HelpPageApiModel
@{
var description = Model.ApiDescription;
ViewBag.Title = description.HttpMethod.Method + " " + description.RelativePath;
}
<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>
<section class="content-wrapper main-content clear-fix">
@Html.DisplayForModel()
</section>
</div>