Skip to content

Commit bac1fd0

Browse files
committed
another big refactory
1 parent 9cbb3ce commit bac1fd0

File tree

41 files changed

+71
-174
lines changed

Some content is hidden

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

41 files changed

+71
-174
lines changed

config/_default/menus/menus.en.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
[[templates]]
2828
name = "Blazor"
2929
identifier = "blazor"
30-
url = "/blazor-template/general/getting-started/"
30+
url = "/templates/blazor-template/"
3131
weight = 60
3232

3333
[[templates]]

config/_default/menus/menus.it.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@
2626

2727
[[templates]]
2828
name = "Blazor"
29-
identifier = "blazor"
30-
url = "/it/blazor-template/general/getting-started/"
29+
identifier = "blazor-dotnet-template"
30+
url = "/it/templates/blazor-template/"
3131
weight = 60
3232

3333
[[templates]]

content/en/blazor-template/_index.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

content/en/blazor-template/general/_index.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

content/en/templates/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title : "Templates"
33
description: "Extensive Documentation for the Genocs .NET Templates."
44
lead: ""
55
date: 2023-05-13 10:26:50+02:00
6-
lastmod: 2024-11-17T00:00:00+02:00
6+
lastmod: 2025-10-11T13:16:43Z
77
draft: false
88
images: []
99
---
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
---
2+
title : "Blazor Template"
3+
description: "Genocs Library's Blazor WebAssembly Template."
4+
lead: ""
5+
date: 2023-05-13T15:40:19+02:00
6+
lastmod: 2025-10-11T13:16:43Z
7+
draft: false
8+
images: []
9+
---

content/en/blazor-template/general/development-environment.md renamed to content/en/templates/blazor-template/development-environment.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ lastmod: 2024-11-24T00:00:00+02:00
77
draft: false
88
images: []
99
menu:
10-
blazor-template:
10+
templates:
1111
identifier: "general-development-environment"
1212
name: "Development Environment"
13-
parent: "general"
13+
parent: "blazor"
1414
weight: 2
1515
toc: true
1616
---

content/en/blazor-template/general/getting-started/index.md renamed to content/en/templates/blazor-template/getting-started/index.md

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,20 @@ title: "Getting Started 🚀"
33
description: "Getting Started with Genocs Library's Blazor WebAssembly Template."
44
lead: "Getting Started with Genocs Library's Blazor WebAssembly Template."
55
date: 2023-05-13T15:40:19+02:00
6-
lastmod: 2023-05-13T15:40:19+02:00
6+
lastmod: 2025-10-11T00:00:00+02:00
77
draft: false
88
images: []
99
menu:
10-
blazor-template:
11-
identifier: "general-getting-started"
10+
templates:
11+
identifier: "blazor-template-getting-started"
1212
name: "Getting Started 🚀"
13-
parent: "general"
13+
parent: "blazor"
1414
weight: 3
1515
toc: true
1616
---
1717

1818
Firstly, make sure that you have already setup your development environment that runs the prerequisite tools and SDKs. Refer [Development Environment](/blazor-webassembly-template/general/development-environment/) for details.
1919

20-
2120
To get started with this Template, here are the available options.
2221

2322
- Fork the Repository. Use this if you want to always keep your version of the Template up-to date with the latest changes.
@@ -44,24 +43,24 @@ Open up your Command Prompt / PowerShell and run the following command to instal
4443
```powershell
4544
dotnet new --install Genocs.BlazorWasm.Template
4645
```
46+
4747
or, if you want to use a specific version of the template, use
4848

4949
```powershell
5050
dotnet new --install Genocs.BlazorWasm.Template::1.1.0
5151
```
52+
5253
This would install the `Genocs Blazor WebAssembly Template` template globally on your machine. Do note that, at the time of writing this documentation, the latest available version is **0.0.1-rc** which is also one of the first stable pre-release version of the package. It is highly likely that there is already a newer version available when you are reading this.
5354

54-
> *To get the latest version of the package, visit [NuGet.org](https://www.nuget.org/packages/Genocs.BlazorWasm.Template/)*
55+
> _To get the latest version of the package, visit [NuGet.org](https://www.nuget.org/packages/Genocs.BlazorWasm.Template/)_
5556
>
56-
> *Genocs.BlazorWebAssembly.Template is now in pre-release state. You can find the latest version on NuGet.org*
57+
> _Genocs.BlazorWebAssembly.Template is now in pre-release state. You can find the latest version on NuGet.org_
5758
5859
{{< alert text="Genocs.BlazorWasm.Template::1.1.0 is compatible only with Genocs.Microservice.Template::2.1.0 and above." />}}
5960

60-
61-
6261
Get the .NET WebApi Template by running the following command
6362

64-
``` bash
63+
```bash
6564
dotnet new install Genocs.Microservice.Template
6665
```
6766

@@ -75,7 +74,7 @@ Simply navigate to a new directory (wherever you want to place your new solution
7574

7675
Run the following command. Note that, in this demonstration I am naming my new solution as `Genocs.Blazor`.
7776

78-
``` bash
77+
```bash
7978
dotnet new Genocs-blazor -o Genocs.Blazor
8079
```
8180

content/en/blazor-template/general/overview.md renamed to content/en/templates/blazor-template/overview.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ lastmod: 2024-11-24T00:00:00+02:00
77
draft: false
88
images: []
99
menu:
10-
blazor-template:
10+
templates:
1111
identifier: "general-overview"
1212
name: "Overview"
13-
parent: "general"
13+
parent: "blazor"
1414
weight: 1
1515
toc: true
1616
---

0 commit comments

Comments
 (0)