-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMainLayout.razor
More file actions
42 lines (35 loc) · 1.52 KB
/
MainLayout.razor
File metadata and controls
42 lines (35 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
@using BlazorBootstrap
@namespace BlazorExpress.ChartJS.Demo.RCL
@inherits MainLayoutBase
<div class="bb-page">
<Sidebar Href="/"
ImageSrc="logo-180.png"
Title="BlazorExpress.ChartJS"
BadgeText="@Version"
DataProvider="SidebarDataProvider"
Style="--bb-sidebar-width: 300px !important;"/>
<main class="bb-scrollbar">
<div class="content my-4 my-md-4 px-4">
@Body
<Callout Class="text-center text-bold skippy border-0" HideHeading="true">
<a href="@GithubUrl" class="text-decoration-none">
<i class="bi bi-star-fill"></i>
<span>If you like BlazorExpress.ChartJS, give it a star on GitHub!</span>
<i class="bi bi-star-fill"></i>
</a>
</Callout>
</div>
<MainLayoutBaseFooter Version="@Version"
HomeUrl="@HomeUrl"
DocsUrl="@DocsUrl"
BlogUrl="@BlogUrl"
GithubUrl="@GithubUrl"
TwitterUrl="@TwitterUrl"
LinkedInUrl="@LinkedInUrl"
OpenCollectiveUrl="@OpenCollectiveUrl"
GithubIssuesUrl="@GithubIssuesUrl"
GithubDiscussionsUrl="@GithubDiscussionsUrl"
StackoverflowUrl="@StackoverflowUrl" />
</main>
</div>
<MainLayoutBaseServices />