@page @using Microsoft.AspNetCore.Mvc.Localization @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 IHtmlLocalizer L @model IndexModel @{ ViewBag.FluidLayout = true; Layout = ThemeManager.CurrentTheme.GetEmptyLayout(); } @section styles { } @section scripts { }
@if (Model.ProjectSelectItems.Count > 1) {
} @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) { Document in the language you wanted is not found. Document in the default language is shown. } @Html.Raw(Model.Document.Content)
@L["InThisDocument"]
} else {

@L["DocumentNotFound"]

@L["BackToWebsite"]
}