26 lines
677 B
Plaintext
26 lines
677 B
Plaintext
@{
|
|
Layout = "~/Views/WebNew/Shared/_Layout.cshtml";
|
|
var jenis = ViewBag.Jenis as string;
|
|
ViewData["Title"] = "Layanan";
|
|
}
|
|
|
|
@await Html.PartialAsync("~/Views/WebNew/Shared/Section/_Helpdesk.cshtml")
|
|
|
|
|
|
@section Style {
|
|
<link rel="stylesheet" href="~/webnew/css/layanan/layanan.css" asp-append-version="true" />
|
|
<link rel="stylesheet" href="~/webnew/css/layanan/detaillayanan.css" asp-append-version="true" />
|
|
}
|
|
|
|
<div id="content">
|
|
|
|
@if (string.IsNullOrEmpty(jenis))
|
|
{
|
|
@await Html.PartialAsync("~/Views/WebNew/Layanan/Layanan.cshtml")
|
|
}
|
|
else
|
|
{
|
|
@await Html.PartialAsync("~/Views/WebNew/Layanan/DetailLayanan.cshtml")
|
|
}
|
|
|
|
</div> |