Skip to content

Commit b977c12

Browse files
committed
rename mvc-tailwind to mvc
1 parent fa504db commit b977c12

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

MyApp/Css.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public static class Css
2424

2525
public static class CssHtmlExtensions
2626
{
27-
public const string BaseUrl = "https://github.com/NetCoreTemplates/mvc-tailwind/blob/main";
27+
public const string BaseUrl = "https://github.com/NetCoreTemplates/mvc/blob/main";
2828

2929
public static IHtmlContent SrcComponent(this IHtmlHelper html, string path, string? size = null, string? cls = null) =>
3030
html.SrcLink($"/MyApp/wwwroot/mjs/components/{path}", size, cls);

MyApp/Views/Home/Index.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ on('#txtName', {
122122
</h2>
123123
<div class="mb-8 md:mb-16">
124124
<div class="sm:mx-0 sm:px-4 sm:py-8 flex justify-evenly">
125-
<div data-component="pages/Home/GettingStarted.mjs" data-props="{ template:'mvc-tailwind' }"></div>
125+
<div data-component="pages/Home/GettingStarted.mjs" data-props="{ template:'mvc' }"></div>
126126
</div>
127127
<div class="flex justify-center">
128128
@Html.SrcPageMjs("Home/GettingStarted.mjs")

MyApp/Views/Shared/_Layout.cshtml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@
147147
<h3 class="text-4xl lg:text-6xl font-bold tracking-tighter leading-tight text-center lg:text-left mb-10 lg:mb-0 lg:pr-4 lg:w-1/2">A ServiceStack Project</h3>
148148
<div class="flex flex-col lg:flex-row justify-center items-center lg:pl-4 lg:w-1/2">
149149
<a href="https://docs.servicestack.net" class="mx-3 bg-black dark:bg-gray-700 hover:bg-white dark:hover:bg-gray-200 hover:text-black border border-black text-white font-bold py-3 px-12 lg:px-8 duration-200 transition-colors mb-6 lg:mb-0">Read Documentation</a>
150-
<a href="https://github.com/NetCoreTemplates/mvc-tailwind" class="mx-3 font-bold hover:underline">View on GitHub</a>
150+
<a href="https://github.com/NetCoreTemplates/mvc" class="mx-3 font-bold hover:underline">View on GitHub</a>
151151
</div>
152152
</div>
153153
</div>

MyApp/_posts/2023-01-01_deploy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: Gayle Smith
88

99
# ServiceStack GitHub Action Deployments
1010

11-
The [release.yml](https://github.com/NetCoreTemplates/mvc-tailwind/blob/main/.github/workflows/release.yml)
11+
The [release.yml](https://github.com/NetCoreTemplates/mvc/blob/main/.github/workflows/release.yml)
1212
in this template enables GitHub Actions CI deployment to a dedicated server with SSH access.
1313

1414
## Overview

MyApp/_posts/2023-01-20_javascript.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ client.api(new Hello({ name }))
222222
```
223223

224224
You'll typically use all these libraries in your **API-enabled** components as seen in the
225-
[HelloApi.mjs](https://github.com/NetCoreTemplates/mvc-tailwind/blob/main/MyApp/wwwroot/mjs/components/HelloApi.mjs)
225+
[HelloApi.mjs](https://github.com/NetCoreTemplates/mvc/blob/main/MyApp/wwwroot/mjs/components/HelloApi.mjs)
226226
component on the home page which calls the [Hello](/ui/Hello) API on each key press:
227227

228228
```js

MyApp/appsettings.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
},
88
"AppConfig": {
99
"LocalBaseUrl": "https://localhost:5001",
10-
"PublicBaseUrl": "https://mvc-tailwind.web-templates.io"
10+
"PublicBaseUrl": "https://mvc.web-templates.io"
1111
}
1212
}

0 commit comments

Comments
 (0)