Skip to content

Commit af67d87

Browse files
committed
Demo/Docs/Blog updates
1 parent 22b566d commit af67d87

File tree

584 files changed

+610
-378
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

584 files changed

+610
-378
lines changed

BlazorBootstrap.Demo.RCL/Components/Layout/MainLayout.razor.cs

Lines changed: 76 additions & 76 deletions
Large diffs are not rendered by default.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
@attribute [Route(pageUrl)]
2+
3+
<PageMetaTags PageUrl="@pageUrl"
4+
Title="@metaTitle"
5+
Description="@metaDescription"
6+
ImageUrl="@imageUrl" />
7+
8+
<PageHero Heading="@pageTitle">
9+
<LeadSection>@pageDescription</LeadSection>
10+
</PageHero>
11+
12+
<CarbonAds />
13+
14+
15+
@code{
16+
private const string pageUrl = DemoRouteConstants.Blog_URL_Prefix;
17+
private const string pageTitle = "Blog";
18+
private const string pageDescription = "An Enterprise-class Blazor Bootstrap Component library built on the Blazor and Bootstrap CSS frameworks.";
19+
private const string metaTitle = "Blog";
20+
private const string metaDescription = "An Enterprise-class Blazor Bootstrap Component library built on the Blazor and Bootstrap CSS frameworks.";
21+
private const string imageUrl = "https://i.imgur.com/FGgEMp6.jpg";
22+
}

BlazorBootstrap.Demo.RCL/Components/Pages/Accordion/AccordionDocumentation.razor renamed to BlazorBootstrap.Demo.RCL/Components/Pages/Demos/Accordion/AccordionDocumentation.razor

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
</Section>
114114

115115
@code {
116-
private const string pageUrl = DemoRouteConstants.Demos_Accordion_Documentation;
116+
private const string pageUrl = DemoRouteConstants.Demos_URL_Accordion;
117117
private const string pageTitle = "Blazor Accordion";
118118
private const string pageDescription = "Build vertically collapsing accordions in combination with our Collapse component.";
119119
private const string metaTitle = "Blazor Accordion Component";

0 commit comments

Comments
 (0)