Skip to content

Commit

Permalink
fix templates
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidVollmers committed Nov 27, 2023
1 parent 8bfcd93 commit 1782247
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion packages/Ignis.Templates/content/ignis-server/App.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@page "/"
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase

<PageTitle>Index</PageTitle>

Expand Down
2 changes: 1 addition & 1 deletion packages/Ignis.Templates/content/ignis-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This project is built using [Ignis](https://ignis.dvolper.dev).

Please make sure you have the following prerequisites installed:

- [.NET SDK](https://dotnet.microsoft.com/en-us/download) (net7.0)
- [.NET SDK](https://dotnet.microsoft.com/en-us/download) (net8.0)
- [Node.js](https://nodejs.org/en/) (v18.17.1)

## Getting started
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase

<TabGroup>
<TabList class="flex space-x-1 rounded-xl bg-red-900/20 p-1">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase

<div class="h-screen bg-gradient-to-r from-red-500 to-rose-500">
@Body
Expand Down
2 changes: 1 addition & 1 deletion packages/Ignis.Templates/content/ignis-wasm/App.razor
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase
<Router AppAssembly="@typeof(App).Assembly">
<Found Context="routeData">
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@page "/"
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase

<PageTitle>Index</PageTitle>

Expand Down
2 changes: 1 addition & 1 deletion packages/Ignis.Templates/content/ignis-wasm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This project is built using [Ignis](https://ignis.dvolper.dev).

Please make sure you have the following prerequisites installed:

- [.NET SDK](https://dotnet.microsoft.com/en-us/download) (net7.0)
- [.NET SDK](https://dotnet.microsoft.com/en-us/download) (net8.0)
- [Node.js](https://nodejs.org/en/) (v18.17.1)

## Getting started
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase

<TabGroup>
<TabList class="flex space-x-1 rounded-xl bg-red-900/20 p-1">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@inherits IgnisRigidComponentBase
@inherits IgnisComponentBase

<div class="h-screen bg-gradient-to-r from-red-500 to-rose-500">
@Body
Expand Down
2 changes: 1 addition & 1 deletion tests/e2e/Ignis.Tests.E2E.Website/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This project is built using [Ignis](https://ignis.dvolper.dev).

Please make sure you have the following prerequisites installed:

- [.NET SDK](https://dotnet.microsoft.com/en-us/download) (net7.0)
- [.NET SDK](https://dotnet.microsoft.com/en-us/download) (net8.0)
- [Node.js](https://nodejs.org/en/) (v18.17.1)

## Getting started
Expand Down

0 comments on commit 1782247

Please sign in to comment.