diff --git a/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/server/GettingStartedDocumentation.razor b/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/server/GettingStartedDocumentation.razor
index 9a1c0b414..826419ee9 100644
--- a/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/server/GettingStartedDocumentation.razor
+++ b/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/server/GettingStartedDocumentation.razor
@@ -59,18 +59,36 @@
Either remove or keep the site.css file but make sure you clear it out of any content when the Sidebar component with full layout is used.
+
+
+
Blazor Bootstrap Templates make it easy to create Blazor projects in a minute. Just install the templates with the NuGet package manager and you're good to go!
+
dotnet new install Blazor.Bootstrap.Templates::1.9.1
+
+ Check the Visual Studio project templates GitHub repo here.
+
+
+
+
+
+
+
+
+
+ Upgrade the Blazor.Bootstrap NuGet package to the latest available version.
+
+
@code {
private string pageUrl = "/getting-started/blazor-server";
private string title = "Getting started with Blazor Bootstrap - Blazor Server Project Setup";
private string description = "High-performance, lightweight, and responsive blazor bootstrap components in a single package from the developers for the developers.";
private string imageUrl = "https://i.imgur.com/SCbZVd4.jpg";
- private string version;
- [Inject] public IConfiguration Configuration { get; set; }
+ private string? version;
+ [Inject] public IConfiguration Configuration { get; set; } = default!;
protected override void OnInitialized()
{
version = $"{Configuration.GetValue("version")}"; // example: v0.6.1
base.OnInitialized();
}
-}
\ No newline at end of file
+}
diff --git a/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/webassembly/GettingStartedDocumentation.razor b/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/webassembly/GettingStartedDocumentation.razor
index 4f95c5d1e..105771274 100644
--- a/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/webassembly/GettingStartedDocumentation.razor
+++ b/BlazorBootstrap.Demo.Hosted/Client/Pages/GettingStarted/webassembly/GettingStartedDocumentation.razor
@@ -57,18 +57,36 @@
Either remove or keep the app.css file but make sure you clear it out of any content when the Sidebar component with full layout is used.
+
+
+
Blazor Bootstrap Templates make it easy to create Blazor projects in a minute. Just install the templates with the NuGet package manager and you're good to go!
+
dotnet new install Blazor.Bootstrap.Templates::1.9.1
+
+ Check the Visual Studio project templates GitHub repo here.
+
+
+
+
+
+
+
+
+
+ Upgrade the Blazor.Bootstrap NuGet package to the latest available version.
+
+
@code {
private string pageUrl = "/getting-started/blazor-webassembly";
private string title = "Getting started with Blazor Bootstrap - Blazor WebAssembly Project Setup";
private string description = "High-performance, lightweight, and responsive blazor bootstrap components in a single package from the developers for the developers.";
private string imageUrl = "https://i.imgur.com/SCbZVd4.jpg";
- private string version;
- [Inject] public IConfiguration Configuration { get; set; }
+ private string? version;
+ [Inject] public IConfiguration Configuration { get; set; } = default!;
protected override void OnInitialized()
{
version = $"{Configuration.GetValue("version")}"; // example: v0.6.1
base.OnInitialized();
}
-}
\ No newline at end of file
+}
diff --git a/BlazorBootstrap.Demo.Hosted/Client/Pages/Index.razor b/BlazorBootstrap.Demo.Hosted/Client/Pages/Index.razor
index 9d69821af..3b664b3ad 100644
--- a/BlazorBootstrap.Demo.Hosted/Client/Pages/Index.razor
+++ b/BlazorBootstrap.Demo.Hosted/Client/Pages/Index.razor
@@ -28,9 +28,9 @@
-
+
+
+
Blazor Bootstrap Templates make it easy to create Blazor projects in a minute. Just install the templates with the NuGet package manager and you're good to go!
+
dotnet new install Blazor.Bootstrap.Templates::1.9.1
+
+ Check the Visual Studio project templates GitHub repo here.
+
+
+
+
+
+
+
+
+
+ Upgrade the Blazor.Bootstrap NuGet package to the latest available version.
+
+
@code {
private string pageUrl = "/getting-started/blazor-webassembly";
private string title = "Getting started with Blazor Bootstrap - Blazor WebAssembly Project Setup";
private string description = "High-performance, lightweight, and responsive blazor bootstrap components in a single package from the developers for the developers.";
private string imageUrl = "https://i.imgur.com/SCbZVd4.jpg";
- private string version;
- [Inject] public IConfiguration Configuration { get; set; }
+ private string? version;
+ [Inject] public IConfiguration Configuration { get; set; } = default!;
protected override void OnInitialized()
{
version = $"{Configuration.GetValue("version")}"; // example: v0.6.1
base.OnInitialized();
}
-}
\ No newline at end of file
+}
diff --git a/BlazorBootstrap.Demo.Server/Pages/Index.razor b/BlazorBootstrap.Demo.Server/Pages/Index.razor
index 9d69821af..3b664b3ad 100644
--- a/BlazorBootstrap.Demo.Server/Pages/Index.razor
+++ b/BlazorBootstrap.Demo.Server/Pages/Index.razor
@@ -28,9 +28,9 @@
-
+
+
+
Blazor Bootstrap Templates make it easy to create Blazor projects in a minute. Just install the templates with the NuGet package manager and you're good to go!
+
dotnet new install Blazor.Bootstrap.Templates::1.9.1
+
+ Check the Visual Studio project templates GitHub repo here.
+
+
+
+
+
+
+
+
+
+ Upgrade the Blazor.Bootstrap NuGet package to the latest available version.
+
+
@code {
private string pageUrl = "/getting-started/blazor-webassembly";
private string title = "Getting started with Blazor Bootstrap - Blazor WebAssembly Project Setup";
private string description = "High-performance, lightweight, and responsive blazor bootstrap components in a single package from the developers for the developers.";
private string imageUrl = "https://i.imgur.com/SCbZVd4.jpg";
- private string version;
- [Inject] public IConfiguration Configuration { get; set; }
+ private string? version;
+ [Inject] public IConfiguration Configuration { get; set; } = default!;
protected override void OnInitialized()
{
version = $"{Configuration.GetValue("version")}"; // example: v0.6.1
base.OnInitialized();
}
-}
\ No newline at end of file
+}
diff --git a/BlazorBootstrap.Demo/Pages/Index.razor b/BlazorBootstrap.Demo/Pages/Index.razor
index 9d69821af..3b664b3ad 100644
--- a/BlazorBootstrap.Demo/Pages/Index.razor
+++ b/BlazorBootstrap.Demo/Pages/Index.razor
@@ -28,9 +28,9 @@
-