YaeBlog/YaeBlog.Theme.FluentUI/Layout/MainLayout.razor

58 lines
1.7 KiB
Plaintext
Raw Normal View History

2024-01-21 19:57:14 +08:00
@using YaeBlog.Core.Models
2024-01-20 17:10:32 +08:00
@inherits LayoutComponentBase
2024-01-21 19:57:14 +08:00
@inject BlogOptions BlogOptionsInstance
2024-01-20 17:10:32 +08:00
<FluentLayout>
<FluentHeader>
<FluentStack Orientation="@Orientation.Horizontal">
<div style="width: 50px"></div>
<a href="/">
2024-01-24 20:53:41 +08:00
<FluentLabel Typo="@Typography.H3" Color="@Color.Lightweight">
2024-01-21 19:57:14 +08:00
@BlogOptionsInstance.Author
2024-01-20 17:10:32 +08:00
</FluentLabel>
</a>
<FluentSpacer/>
2024-01-21 19:57:14 +08:00
<a href="/" style="margin: auto 0 auto 0">
2024-01-24 20:53:41 +08:00
<FluentLabel Typo="@Typography.H5" Color="@Color.Lightweight">
2024-01-20 17:10:32 +08:00
首页
</FluentLabel>
</a>
2024-01-21 19:57:14 +08:00
<a href="/archives" style="margin: auto 0 auto 0">
2024-01-24 20:53:41 +08:00
<FluentLabel Typo="@Typography.H5" Color="@Color.Lightweight">
2024-01-20 17:10:32 +08:00
归档
</FluentLabel>
</a>
2024-01-21 19:57:14 +08:00
<a href="/tags" style="margin: auto 0 auto 0">
2024-01-24 20:53:41 +08:00
<FluentLabel Typo="@Typography.H5" Color="@Color.Lightweight">
2024-01-20 17:10:32 +08:00
标签
</FluentLabel>
</a>
2024-01-21 19:57:14 +08:00
<a href="/about" style="margin: auto 0 auto 0">
2024-01-24 20:53:41 +08:00
<FluentLabel Typo="@Typography.H5" Color="@Color.Lightweight">
2024-01-20 17:10:32 +08:00
关于
</FluentLabel>
</a>
2024-01-21 19:57:14 +08:00
<a href="/links" style="margin: auto 0 auto 0">
2024-01-24 20:53:41 +08:00
<FluentLabel Typo="@Typography.H5" Color="@Color.Lightweight">
2024-01-20 17:10:32 +08:00
友链
</FluentLabel>
</a>
<div style="width: 20px"></div>
2024-01-20 17:10:32 +08:00
</FluentStack>
</FluentHeader>
2024-01-21 19:57:14 +08:00
<FluentBodyContent Style="height: 100%">
<main style="height: 100%">
2024-01-20 17:10:32 +08:00
@Body
</main>
</FluentBodyContent>
</FluentLayout>