Introduction

Structure

File structure is similar across all the .Net 5 projects. You may find the structure of acorn-dotnet-classic-dashboard and small explanations regarding of the content below.

Acorn Html Laravel 8 .Net 5 Admin Template
|
+-- Net5
|   |
|   +-- acorn-dotnet-classic-dashboard          // Classic Dashboard
|   |   |
|   |   \-- acorn-dotnet-classic-dashboard.sln  // Microsoft Visual Studio Solution file
|   |   \-- Acorn.csproj                        // Project file
|   |   \-- Program.cs                          // A file contains the main method which is the entry point
|   |   \-- Startup.cs                          // A file used to define all services used in the application
|   |   \-- appsettings.Development.json        // A json file that stores the application's settings
|   |   \-- appsettings.json                    // A json file that stores the application's settings
|   |   \-- package.json                        // Package file mostly for gulp tasks
|   |   \-- gulpfile.js                         // Gulp tasks to build and minify the sass
|   |   \-- .gitignore                          // A file to tell git to ignore files and folder
|   |   |
|   |   +-- Pages                                // Contains all razor pages of the theme
|   |       \-- Index.cshtml                     
|   |       \-- _ViewStart.cshtml                // A file used to define common view code of each views
|   |       \-- _ViewImports.cshtml              // A file used to define imports view code of each views    
|   |       +-- Shared
|   |       |   |
|   |       |   \-- _Layout.cshtml                // Layout of almost all pages, including menu and footer  
|   |       |   \-- _FullLayout.cshtml            // Layout for the pages without a menu such as Login and Register
|   |       |   \-- _Layout.Breadcrumb.cshtml     // Partial of layout that contains the breadcrumb
|   |       |   \-- _Layout.Footer.cshtml         // Partial of layout that contains the footer
|   |       |   \-- _Layout.Head.cshtml           // Partial of layout that contains the <head> tag
|   |       |   \-- _Layout.Nav.cshtml            // Partial of layout that contains the menu and header
|   |       |   \-- _Layout.NavSecondary.cshtml   // Partial of layout that contains the secondary menu
|   |       |   \-- _Layout.Scripts.cshtml        // Partial of layout that contains the javascripts
|   |       |   \-- _Layout.SearchModal.cshtml    // Partial of layout that contains the search modal
|   |       |   \-- _Layout.SettingsModal.cshtml  // Partial of layout that contains the settings modal
|   |       +-- Apps           
|   |       |   \-- Calendar.cshtml
|   |       |   \-- Chat.cshtml
|   |       |   \-- Contacts.cshtml
|   |       |   \-- Index.cshtml
|   |       |   \-- Mailbox.cshtml
|   |       |   \-- Tasks.cshtml
|   |       +-- Blocks           
|   |       |   \-- Cta.cshtml
|   |       |   \-- Details.cshtml
|   |       |   \-- Gallery.cshtml
|   |       |   \-- Images.cshtml
|   |       |   \-- Index.cshtml
|   |       +-- ... Rest of the .cshtml files 
|   |   |
|   |   +-- sass                                // Sass resources
|   |   |   |
|   |   |   +-- bootstrap                       // Bootstrap style overrides
|   |   |   +-- layout                          // Layout styles for navigation, footer and main content
|   |   |   +-- plugins                         // External plugin style overrides
|   |   |   +-- themes                          // Theme definitions
|   |   |   +-- utils                           // Sass utilities
|   |   |   \-- styles.scss                     // Combination of the sass resources
|   |   |
|   |   +-- wwwroot                             // folder serve and store  UI static files
|   |       |
|   |       +-- css                             // Css files
|   |       |   |
|   |       |   +-- vendor                      // External css resources
|   |       |   \-- main.css                    // An empty file to add your styles
|   |       |   \-- styles.css                  // Core style file of the template, compiled from sass 
|   |       | 
|   |       +-- font                          // Font icons
|   |       |   |
|   |       |   +-- CS-Interface              // Essential interface icons to use as a font file
|   |       |
|   |       +-- icon                          // Icons
|   |       |   |
|   |       |   +-- acorn-icons-commerce.js   // Commerce icons
|   |       |   +-- acorn-icons-interface.js  // Interface icons
|   |       |   +-- acorn-icons-learning.js   // Learning icons
|   |       |   +-- acorn-icons-medical.js    // Medical icons
|   |       |   +-- acorn-icons.js            // Acorn Icons base scripts
|   |       |   +-- index.html                // Icons viewer
|   |       |
|   |       +-- img                             // Image sources
|   |       |   |
|   |       |   +-- background                  // Auth pages background
|   |       |   +-- banner                      // Banner images
|   |       |   +-- blog                        // Blog images
|   |       |   +-- brand                       // Logos
|   |       |   +-- favicon                     // Favicons for various devices
|   |       |   +-- illustration                // Illustrations in jpeg format
|   |       |   +-- logo                        // Logo color alternatives
|   |       |   +-- product                     // Product images with various sizes
|   |       |   +-- profile                     // User profile images
|   |       |   +-- video                       // Video thumbnails and backgrounds
|   |       |
|   |       +-- js                              // Javascript sources
|   |       |   |                             
|   |       |   +-- apps                        // Application scripts
|   |       |   +-- base                        // Template core scripts
|   |       |   +-- components                  // Bootstrap components examples
|   |       |   +-- cs                          // Custom plugins
|   |       |   +-- forms                       // Form layouts and plugins examples
|   |       |   +-- pages                       // Scripts of pages
|   |       |   +-- plugins                     // External plugins examples
|   |       |   +-- vendor                      // External javascript resources
|   |       |   \-- common.js                   // Initialization of commonly used plugins
|   |       |   \-- scripts.js                  // Template startup scripts and initialization of the others
|   |       |
|   |       +-- json                            // Json sources
|   |       |   |
|   |       |   \-- chat.json                   // Mock chat data
|   |       |   \-- contacts.json               // Mock contacts data
|   |       |   \-- events.json                 // Mock calendar data
|   |       |   \-- icons.json                  // Icon tags and titles to provide search and listing
|   |       |   \-- mailbox.json                // Mock mailbox data
|   |       |   \-- products.json               // Mock products data
|   |       |   \-- search.json                 // Pages and their titles to search the project
|   |       |   \-- tasks.json                  // Mock tasks data
|   |       |
|   |       |
|   |
|   +-- acorn-dotnet-ecommerce-platform         // Ecommerce Platform
|   +-- acorn-dotnet-service-provider           // Service Provider
|   +-- acorn-dotnet-starter-project            // Starter Project 
|
+-- Laravel
+-- Html
\-- Docs.html