22 lines
568 B
Plaintext
22 lines
568 B
Plaintext
@model string
|
|
@{
|
|
ViewData["Title"] = "Help article not found";
|
|
}
|
|
|
|
<nav class="breadcrumb-trail" aria-label="Breadcrumb">
|
|
<a asp-action="Index">Help</a>
|
|
<span>Article not found</span>
|
|
</nav>
|
|
|
|
<div class="page-heading">
|
|
<div>
|
|
<p class="eyebrow">Help</p>
|
|
<h1>Help article not found.</h1>
|
|
@if (!string.IsNullOrWhiteSpace(Model))
|
|
{
|
|
<p class="lead-text">No help article exists for <strong>@Model</strong>.</p>
|
|
}
|
|
</div>
|
|
<a class="btn btn-outline-secondary" asp-action="Index">Help Centre</a>
|
|
</div>
|