diff --git a/AspnetCoreMvcFull.sln b/AspnetCoreMvcFull.sln index 94c552f..661a7dc 100644 --- a/AspnetCoreMvcFull.sln +++ b/AspnetCoreMvcFull.sln @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio Version 17 VisualStudioVersion = 17.8.34322.80 MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspnetCoreMvcFull", "AspnetCoreMvcFull.csproj", "{9618F5B9-8BCD-4A87-ADF5-D4A4935FB0A6}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspnetCoreMvcFull", "AspnetCoreMvcFull.csproj", "{B3F387EE-69F2-410B-BF7C-D48AD6403234}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -11,15 +11,15 @@ Global Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9618F5B9-8BCD-4A87-ADF5-D4A4935FB0A6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {9618F5B9-8BCD-4A87-ADF5-D4A4935FB0A6}.Debug|Any CPU.Build.0 = Debug|Any CPU - {9618F5B9-8BCD-4A87-ADF5-D4A4935FB0A6}.Release|Any CPU.ActiveCfg = Release|Any CPU - {9618F5B9-8BCD-4A87-ADF5-D4A4935FB0A6}.Release|Any CPU.Build.0 = Release|Any CPU + {B3F387EE-69F2-410B-BF7C-D48AD6403234}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {B3F387EE-69F2-410B-BF7C-D48AD6403234}.Debug|Any CPU.Build.0 = Debug|Any CPU + {B3F387EE-69F2-410B-BF7C-D48AD6403234}.Release|Any CPU.ActiveCfg = Release|Any CPU + {B3F387EE-69F2-410B-BF7C-D48AD6403234}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {E129492E-9D1C-4963-8F37-96CE8E204C18} + SolutionGuid = {D80F505E-3FBC-4ADC-BE79-BD5DED605BAA} EndGlobalSection EndGlobal diff --git a/Controllers/IconsController.cs b/Controllers/IconsController.cs index 6f9c7c0..8d7db09 100644 --- a/Controllers/IconsController.cs +++ b/Controllers/IconsController.cs @@ -6,5 +6,5 @@ namespace AspnetCoreMvcFull.Controllers; public class IconsController : Controller { - public IActionResult MdiIcons() => View(); + public IActionResult RiIcons() => View(); } diff --git a/Gulpfile.js b/Gulpfile.js index 49736ef..453c222 100644 --- a/Gulpfile.js +++ b/Gulpfile.js @@ -65,19 +65,22 @@ const buildCssTask = function (cb) { // If conf.minify == true, generate compressed style without sourcemap gulpIf( conf.minify, - `sass src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --style compressed --no-source-map`, + `sass --load-path=node_modules/ src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --style compressed --no-source-map`, gulpIf( conf.fastDev, - `sass src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/scss/pages:${conf.distPath}/vendor/css/pages src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --no-source-map` + `sass --load-path=node_modules/ src/site.scss:${conf.distPath}/css/site.css src/scss:${conf.distPath}/vendor/css src/scss/pages:${conf.distPath}/vendor/css/pages src/fonts:${conf.distPath}/vendor/fonts src/libs:${conf.distPath}/vendor/libs --no-source-map` ) ), function (err) { cb(err); } ), - sass({ - outputStyle: conf.minify ? 'compressed' : 'expanded' - }).on('error', sass.logError) + sass + .sync({ + includePaths: ['node_modules'], // Add this line to include node_modules + outputStyle: conf.minify ? 'compressed' : 'expanded' + }) + .on('error', sass.logError) ) ) .pipe(gulpIf(conf.sourcemaps, sourcemaps.write())) @@ -88,7 +91,8 @@ const buildCssTask = function (cb) { path.dirname = path.dirname.replace('scss', 'css'); }) ) - .pipe(dest(conf.distPath)); + .pipe(dest(conf.distPath)) + .pipe(browserSync.stream()); }; // Build JS @@ -147,8 +151,14 @@ const pageJsTask = function () { const FONT_TASKS = [ { - name: 'materialdesignicons', - path: 'node_modules/@mdi/font/fonts/*' + name: 'remixicon', + path: [ + 'node_modules/remixicon/fonts/remixicon.eot', + 'node_modules/remixicon/fonts/remixicon.ttf', + 'node_modules/remixicon/fonts/remixicon.woff', + 'node_modules/remixicon/fonts/remixicon.woff2', + 'node_modules/remixicon/fonts/remixicon.svg' + ] } ].reduce(function (tasks, font) { const functionName = `buildFonts${font.name.replace(/^./, m => m.toUpperCase())}Task`; diff --git a/README.md b/README.md index bc5f3ed..ee6c071 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@

- materio-logo + materio-logo

@@ -14,13 +14,13 @@ ![GitHub](https://img.shields.io/github/license/themeselection/materio-bootstrap-html-aspnet-core-mvc-admin-template-free) ![GitHub release (latest by date)](https://img.shields.io/github/v/release/themeselection/materio-bootstrap-html-aspnet-core-mvc-admin-template-free) ![GitHub issues](https://img.shields.io/github/issues/themeselection/materio-bootstrap-html-aspnet-core-mvc-admin-template-free) ![GitHub closed issues](https://img.shields.io/github/issues-closed/themeselection/materio-bootstrap-html-aspnet-core-mvc-admin-template-free) ![Twitter Follow](https://img.shields.io/twitter/follow/Theme_Selection?style=social) -[![Materio - Free Bootstrap 5 .Net Core MVC Admin Template Demo Screenshot](https://cdn.jsdelivr.net/gh/themeselection/ts-assets/materio/materio-bootstrap-aspnet-core-mvc-admin-template-free/banner/banner.png)](https://themeselection.com/item/materio-free-aspnet-core-mvc-admin-template/) +[![Materio - Free Bootstrap 5 .Net Core MVC Admin Template Demo Screenshot](https://cdn.themeselection.com/ts-assets/materio/materio-bootstrap-aspnet-core-mvc-admin-template-free/banner/banner.png)](https://themeselection.com/item/materio-free-aspnet-core-mvc-admin-template/) ## Introduction 🚀 -If you’re a developer looking for the most Powerful & comprehensive [**Free Bootstrap 5 ASPNET Core MVC Admin Template**](https://themeselection.com/item/materio-bootstrap-html-aspnet-core-mvc-admin-template-free/) built for developers, rich with features, and highly customizable look no further than Materio. We’ve followed the highest industry standards to bring you the very best admin template that is not only fast and easy to use but highly scalable. Offering ultimate convenience and flexibility, you’ll be able to build whatever application you want with very little hassle. +If you’re a developer looking for the most Powerful & comprehensive [**Free Bootstrap 5 ASPNET Core MVC Admin Template**](https://themeselection.com/item/materio-free-aspnet-core-mvc-admin-template/) built for developers, rich with features, and highly customizable look no further than Materio. We’ve followed the highest industry standards to bring you the very best admin template that is not only fast and easy to use but highly scalable. Offering ultimate convenience and flexibility, you’ll be able to build whatever application you want with very little hassle. -Build premium quality applications with ease. Use our innovative [Aspnet Core MVC Bootstrap admin template](https://themeselection.com/item/category/bootstrap-admin-templates/) to create eye-catching, high-quality WebApps. Your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices. +Build premium quality applications with ease. Use our innovative [Aspnet Core MVC Bootstrap admin template](https://themeselection.com/item/category/asp-net-dashboard/) to create eye-catching, high-quality WebApps. Your apps will be completely responsive, ensuring they’ll look stunning and function flawlessly on desktops, tablets, and mobile devices. [View Demo](https://demos.themeselection.com/materio-aspnet-core-mvc-admin-template-free/html/) @@ -51,7 +51,7 @@ Please [visit](https://demos.themeselection.com/materio-bootstrap-html-admin-tem - Extended UI - Perfect Scrollbar - Text Divider -- Material Design Icons (MDI) +- Remix Icons (RI) - Form Elements - Basic Inputs - Input Groups @@ -72,7 +72,7 @@ Please [visit](https://demos.themeselection.com/materio-bootstrap-html-admin-tem | Fixed Layout(Menu) | Fixed & Static Layout(Menu) | | 1 Simple Dashboard | 5 Niche Dashboards | | - | Multiple Ready Applications like Calendar, Invoice, Users List, Users View, Roles and Permission,Transactions(CRUD) etc. | -| Simple From Elements | Advance form elements, validation & form wizard | +| Simple Form Elements | Advance form elements, validation & form wizard | | Basic Cards | Basic, Advance, Statistics, Analytics, Gamification and Actions Cards | | Basic User Interface(Components) | Advance and Custom User Interfaces(Components) | | Two Extended Components | Twelve Ready to use Extended Components | @@ -85,7 +85,7 @@ Please [visit](https://demos.themeselection.com/materio-bootstrap-html-admin-tem | 1 Chart Library | 2 Chart Libraries | | - | Multiple Navbar & Menu Options | | - | Starter-kit | -| - | Internationalization support, Docker support | +| - | Internationalization support | | - | RTL Support | | Regular Support | Priority Support | | Detailed Documentation | Detailed Documentation | @@ -124,7 +124,7 @@ Contribution are always welcome and recommended! Here is how: ## Changelog 📆 -Please refer to the [CHANGELOG](CHANGELOG.md) file. We will add detailed release notes to each new release. +Please refer to the [CHANGELOG](CHANGELOG.md) file. We will add a detailed release notes to each new release. ## Support 🧑🏻‍💻 @@ -168,21 +168,21 @@ For free products, enjoy community support via GitHub issues. Upgrade to Premium **[ThemeSelection](https://themeselection.com/)** provides Selected high quality, modern design, professional and easy-to-use **Fully Coded Dashboard Templates & UI Kits** to create your applications faster! -- [Bootstrap Admin Templates](https://themeselection.com/products/category/bootstrap-admin-templates/) -- [VueJS Admin Templates](https://themeselection.com/products/category/vuejs-admin-templates/) -- [Laravel Admin Templates](https://themeselection.com/products/category/laravel-admin-templates/) +- [Bootstrap Admin Templates](https://themeselection.com/item/category/bootstrap-admin-templates/) +- [VueJS Admin Templates](https://themeselection.com/item/category/vuejs-admin-templates/) +- [Laravel Admin Templates](https://themeselection.com/item/category/laravel-admin-templates/) - [Django Admin Templates](https://themeselection.com/item/category/django-admin-template/) - [React (NextJS) Admin Templates](https://themeselection.com/item/category/next-js-admin-template/) - [ASP.Net Core Admin Templates](https://themeselection.com/item/category/asp-net-dashboard/) -- [Free UI Kits](https://themeselection.com/products/category/free-ui-kits/) +- [Free UI Kits](https://themeselection.com/item/category/free-ui-kits/) -If you want to [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) like Materio Aspnet Core MVC Free then do visit [ThemeSelection](https://themeselection.com/). +If you want to [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) like Materio Aspnet Core MVC Free then do visit [ThemeSelection](https://themeselection.com/). ## Useful Links 🎁 - [Vue CheatSheet](https://vue-cheatsheet.themeselection.com/) -- [Freebies](https://themeselection.com/products/category/download-free-admin-templates/) -- [Download Free Admin Templates](https://themeselection.com/products/category/download-free-admin-templates/) +- [Freebies](https://themeselection.com/item/category/free-admin-templates/) +- [Download Free Admin Templates](https://themeselection.com/item/category/free-admin-templates/) - [Bootstrap 5 CheatSheet](https://bootstrap-cheatsheet.themeselection.com/) ## Social Media :earth_africa: diff --git a/Views/Auth/ForgotPasswordBasic.cshtml b/Views/Auth/ForgotPasswordBasic.cshtml index 064571b..009e062 100644 --- a/Views/Auth/ForgotPasswordBasic.cshtml +++ b/Views/Auth/ForgotPasswordBasic.cshtml @@ -11,31 +11,31 @@
-
+
-
+
-
-

Forgot Password? 🔒

-

Enter your email and we'll send you instructions to reset your password

-
-
+
+

Forgot Password? 🔒

+

Enter your email and we'll send you instructions to reset your password

+ +
- + @@ -43,7 +43,7 @@
auth-tree - triangle-bg + triangle-bg auth-tree
diff --git a/Views/Auth/LoginBasic.cshtml b/Views/Auth/LoginBasic.cshtml index cbf95cf..24ec08e 100644 --- a/Views/Auth/LoginBasic.cshtml +++ b/Views/Auth/LoginBasic.cshtml @@ -11,41 +11,41 @@
-
+
-
+
-
-

Welcome to @TempData.Peek("appName")! 👋

-

Please sign-in to your account and start the adventure

+
+

Welcome to @TempData.Peek("appName")! 👋🏻

+

Please sign-in to your account and start the adventure

-
-
+ +
-
+
- +
-
-
+
+
-
- +
+
-

+

New on our platform? Create an account @@ -70,7 +70,7 @@

auth-tree - triangle-bg + triangle-bg auth-tree
diff --git a/Views/Auth/RegisterBasic.cshtml b/Views/Auth/RegisterBasic.cshtml index f96dc65..b0e9732 100644 --- a/Views/Auth/RegisterBasic.cshtml +++ b/Views/Auth/RegisterBasic.cshtml @@ -11,43 +11,43 @@
-
+
-
+
-
-

Adventure starts here 🚀

-

Make your app management easy and fun!

+
+

Adventure starts here 🚀

+

Make your app management easy and fun!

-
-
+ +
-
+
-
+
- +
-
-
+
+
- -

+

Already have an account? Sign in instead @@ -70,7 +70,7 @@

auth-tree - triangle-bg + triangle-bg auth-tree
diff --git a/Views/Cards/Basic.cshtml b/Views/Cards/Basic.cshtml index e0f0253..92c9011 100644 --- a/Views/Cards/Basic.cshtml +++ b/Views/Cards/Basic.cshtml @@ -7,12 +7,9 @@ } @* ************** Content ************** *@ - -

UI Elements / Cards Basic

- -
-
+
+
Card image cap
@@ -24,11 +21,11 @@
-
+
-
Card title
-
Support card subtitle
+
Card title
+
Support card subtitle
Card image cap
@@ -38,11 +35,11 @@
-
+
-
Card title
-
Support card subtitle
+
Card title
+
Support card subtitle
Card image cap

Bear claw sesame snaps gummies chocolate.

Card link @@ -54,12 +51,12 @@ -
Content types
+
Content types
-
+
Body
-
+

This is some text within a card body. @@ -69,10 +66,10 @@

Titles, text, and links
-
+
-
Card title
-
Card subtitle
+
Card title
+
Card subtitle

Some quick example text to build on the card title and make up the bulk of the card's content.

@@ -81,7 +78,7 @@
List groups
-
+
  • Cras justo odio
  • Dapibus ac facilisis in
  • @@ -91,7 +88,7 @@
Images
-
+
Card image cap

@@ -124,9 +121,9 @@

-
Header and footer
-
-
+
Header and footer
+
+
Featured @@ -140,7 +137,7 @@
-
+
Quote
@@ -158,7 +155,7 @@
-
+
Featured @@ -177,10 +174,10 @@ -
Text alignment
-
+
Text alignment
+
-
+
Special title treatment

With supporting text below as a natural lead-in to additional content.

@@ -189,7 +186,7 @@
-
+
Special title treatment

With supporting text below as a natural lead-in to additional content.

@@ -198,7 +195,7 @@
-
+
Special title treatment

With supporting text below as a natural lead-in to additional content.

@@ -210,21 +207,23 @@ -
Navigation
-
+
Navigation
+
-
-
- +
+
+
@@ -245,17 +244,19 @@
- +
@@ -277,10 +278,10 @@ -
Images caps & overlay
-
+
Images caps & overlay
+
-
+
Card image cap
Card title
@@ -295,7 +296,7 @@
-
+
Card title

@@ -326,10 +327,10 @@ -

Horizontal
-
+
Horizontal
+
-
+
Card image @@ -349,7 +350,7 @@
-
+
@@ -373,10 +374,10 @@
Style variation
-
+
Default(solid)
+
-
-
Header
+
Primary card title

@@ -386,8 +387,7 @@

-
-
Header
+
Secondary card title

@@ -397,8 +397,7 @@

-
-
Header
+
Success card title

@@ -408,8 +407,7 @@

-
-
Header
+
Danger card title

@@ -419,8 +417,7 @@

-
-
Header
+
Warning card title

@@ -430,8 +427,7 @@

-
-
Header
+
Info card title

@@ -442,62 +438,63 @@

-
+
Outline
+
-
+
-
Primary card title
-

+

Primary card title
+

Some quick example text to build on the card title and make up.

-
+
-
Secondary card title
-

+

Secondary card title
+

Some quick example text to build on the card title and make up.

-
+
-
Success card title
-

+

Success card title
+

Some quick example text to build on the card title and make up.

-
+
-
Danger card title
-

+

Danger card title
+

Some quick example text to build on the card title and make up.

-
+
-
Warning card title
-

+

Warning card title
+

Some quick example text to build on the card title and make up.

-
+
-
Info card title
-

+

Info card title
+

Some quick example text to build on the card title and make up.

@@ -508,11 +505,11 @@ -
Card layout
+
Card layout
Card Groups
-
+
Card image cap
@@ -555,7 +552,7 @@
Grid Card
-
+
Card image cap @@ -613,9 +610,9 @@
-
Masonry
-
-
+
Masonry
+
+
Card image cap
@@ -624,7 +621,7 @@
-
+
@@ -636,7 +633,7 @@
-
+
Card image cap
@@ -646,7 +643,7 @@
-
+
@@ -658,7 +655,7 @@
-
+
Card title
@@ -667,12 +664,12 @@
-
+
- Card image cap + Card image cap
-
+
@@ -684,7 +681,7 @@
-
+
Card title
diff --git a/Views/Dashboards/Index.cshtml b/Views/Dashboards/Index.cshtml index e8c073a..4ca43ea 100644 --- a/Views/Dashboards/Index.cshtml +++ b/Views/Dashboards/Index.cshtml @@ -15,32 +15,31 @@ } @* ************** Content ************** *@ -
+
-
-

Congratulations John! 🎉

-

Best seller of the month

-

$42.8k

-

78% of target 🚀

+
+
Congratulations Norris! 🎉
+

Best seller of the month

+

$42.8k

+

78% of target 🚀

View Sales
- triangle background - view sales + view sales
-
+
Transactions
-

Total 48.5% growth 😎 this month

+

Total 48.5% Growth 😎 this month

-
-
+
+
-
- +
+
-
Sales
+

Sales

245k
@@ -69,12 +68,12 @@
-
- +
+
-
Customers
+

Customers

12.5k
@@ -82,12 +81,12 @@
-
- +
+
-
Product
+

Product

1.54k
@@ -95,12 +94,12 @@
-
- +
+
-
Revenue
+

Revenue

$88k
@@ -113,13 +112,13 @@
-
+
Weekly Overview
-
+
-
-

45%

+
+

45%

Your sales performance is 45% 😎 better compared to last month

@@ -147,12 +146,12 @@
-
+
Total Earning
-
-
+
+
-

$24,895

- - - 10% +

$24,895

+ + + 10%
- Compared to $84,325 last year +

Compared to $84,325 last year