@page @using Microsoft.AspNetCore.Mvc.Localization @using Volo.Abp.AspNetCore.Mvc.UI.Layout @using Volo.Abp.AspNetCore.Mvc.UI.Packages.Anchor @using Volo.Abp.AspNetCore.Mvc.UI.Packages.Clipboard @using Volo.Abp.AspNetCore.Mvc.UI.Packages.MalihuCustomScrollbar @using Volo.Abp.AspNetCore.Mvc.UI.Packages.Popper @using Volo.Abp.AspNetCore.Mvc.UI.Packages.Prismjs @using Volo.Abp.AspNetCore.Mvc.UI.Theming @using Volo.Docs @using Volo.Docs.Localization @using Volo.Docs.Pages.Documents.Project @inject IThemeManager ThemeManager @inject IPageLayout PageLayout @inject IHtmlLocalizer L @model IndexModel @{ ViewBag.FluidLayout = true; Layout = ThemeManager.CurrentTheme.GetEmptyLayout(); PageLayout.Content.Title = Model.DocumentName?.Replace("-", " "); } @section styles { } @section scripts { }
@if (Model.ShowProjectsCombobox && Model.ProjectSelectItems.Count > 1) {
}
@if (Model.VersionSelectItems.Any()) {
} @if (Model.VersionSelectItems.Any()) {
}
@if (Model.Navigation == null || Model.Navigation.Content.IsNullOrEmpty()) {
@L["NavigationDocumentNotFound"]
} else { }
@if (Model.Document != null) {
@if (Model.Document.Contributors != null && Model.Document.Contributors.Count > 0) {
@(L["Contributors"].Value + " :") @foreach (var contributor in Model.Document.Contributors) { }
}
@if (Model.DocumentLanguageIsDifferent) { @L["DocumentNotFoundInSelectedLanguage"] } @Html.Raw(Model.Document.Content)
@L["InThisDocument"]
} else {

@L["DocumentNotFound"]

@L["BackToWebsite"]
}