Skip to content

Commit bdb2435

Browse files
committed
Add Blazor WASM to Identity Auth templates
1 parent f9704c4 commit bdb2435

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

MyApp/_pages/auth/identity-auth.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ For a quick preview of what these look like, checkout out their Internet Hosted
3434
<img class="p-2" src="https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/blazor-vue.png"></div>
3535
<div class="bg-gray-50 dark:bg-gray-800 text-gray-600 dark:text-gray-300 font-semibold group-hover:bg-indigo-700 group-hover:text-white text-center py-2">blazor-vue.web-templates.io</div>
3636
</a>
37+
<a class="block group border dark:border-gray-800 hover:border-indigo-700 dark:hover:border-indigo-700" href="https://blazor-wasm.web-templates.io">
38+
<div style="max-height:350px;overflow:hidden">
39+
<img class="p-2" src="https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/blazor-wasm.png"></div>
40+
<div class="bg-gray-50 dark:bg-gray-800 text-gray-600 dark:text-gray-300 font-semibold group-hover:bg-indigo-700 group-hover:text-white text-center py-2">blazor-wasm.web-templates.io</div>
41+
</a>
3742
<a class="block group border dark:border-gray-800 hover:border-indigo-700 dark:hover:border-indigo-700" href="https://razor.web-templates.io">
3843
<div style="max-height:350px;overflow:hidden">
3944
<img class="p-2" src="https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/razor.png"></div>
@@ -49,11 +54,6 @@ For a quick preview of what these look like, checkout out their Internet Hosted
4954
<img class="p-2" src="https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/razor-bootstrap.png"></div>
5055
<div class="bg-gray-50 dark:bg-gray-800 text-gray-600 dark:text-gray-300 font-semibold group-hover:bg-indigo-700 group-hover:text-white text-center py-2">razor-bootstrap.web-templates.io</div>
5156
</a>
52-
<a class="block group border dark:border-gray-800 hover:border-indigo-700 dark:hover:border-indigo-700" href="https://mvc-bootstrap.web-templates.io">
53-
<div style="max-height:350px;overflow:hidden">
54-
<img class="p-2" src="https://raw.githubusercontent.com/ServiceStack/Assets/master/csharp-templates/mvc-bootstrap.png"></div>
55-
<div class="bg-gray-50 dark:bg-gray-800 text-gray-600 dark:text-gray-300 font-semibold group-hover:bg-indigo-700 group-hover:text-white text-center py-2">mvc-bootstrap.web-templates.io</div>
56-
</a>
5757
</div>
5858

5959

@@ -62,6 +62,7 @@ Identity Auth in your own projects:
6262

6363
- [blazor](https://github.com/NetCoreTemplates/blazor)
6464
- [blazor-vue](https://github.com/NetCoreTemplates/blazor-vue)
65+
- [blazor-wasm](https://github.com/NetCoreTemplates/blazor-wasm)
6566
- [razor](https://github.com/NetCoreTemplates/razor)
6667
- [mvc](https://github.com/NetCoreTemplates/mvc)
6768
- [razor-bootstrap](https://github.com/NetCoreTemplates/razor-bootstrap)

MyApp/wwwroot/pages/auth/identity-auth.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import Templates, { Index } from "../templates/Templates.mjs"
22

33
const IdentityAuthTemplates = {
44
components: { Templates },
5-
template:`<Templates :templates="[Index['blazor'], Index['blazor-vue'], Index['razor'], Index['mvc'], Index['razor-bootstrap'], Index['mvc-bootstrap']]" hide="demo" />`,
5+
template:`<Templates :templates="[Index['blazor'], Index['blazor-vue'], Index['blazor-wasm'], Index['razor'], Index['mvc'], Index['razor-bootstrap']]" hide="demo" />`,
66
setup() {
77
return { Index }
88
}

0 commit comments

Comments
 (0)