mirror of
https://gitee.com/ant-design-blazor/ant-design-blazor.git
synced 2024-12-15 17:31:42 +08:00
25 lines
868 B
C#
25 lines
868 B
C#
@page "/docs/{fileName}"
|
|
@page "/docs"
|
|
<section class="main-container">
|
|
<article class="markdown">
|
|
@if (_file != null)
|
|
{
|
|
var title = $"{_file.Title} - Ant Design of Blazor";
|
|
<Microsoft.AspNetCore.Components.Web.Extensions.Head.Title Value="@title" />
|
|
<h1>
|
|
@_file.Title
|
|
<Tooltip Title="@LanguageService.Resources["app.content.edit-demo"]">
|
|
<Unbound>
|
|
<a @ref="context.Current" class="edit-button" href="@EditUrl" target="_blank" rel="noopener noreferrer">
|
|
<Icon Type="edit" />
|
|
</a>
|
|
</Unbound>
|
|
</Tooltip>
|
|
</h1>
|
|
|
|
@((MarkupString) _file.Html)
|
|
}
|
|
</article>
|
|
<ContributorsList FilePath="@_filePath" />
|
|
</section>
|