Getting started

File structure

Finder

The folder houses both the source and production files for the template.

Finder / Controllers
Finder / Models
Finder / obj
Finder / Properties
Finder / Views
Finder / assets

This folder contains compiled template's assets generated from the source files.

Finder / assets / app-icons

This folder houses favicon images tailored for various browsers and platforms. These icons are integrated into the <head> section of an HTML document.

Finder / assets / css

In this folder, you will find compiled .css files, including: theme.css and theme.min.css as well as their mapping files.

Finder / assets / icons

This folder contains the Finder icons font file, as well as the associated .css file generated from the SVG icon collection located in the src/icons directory. For additional information, please refer to the UI icons (Icon font) section.

Finder / assets / img

This folder houses all template's graphic assets, including images, illustrations, vector icons, and more, neatly organized within subfolders.

Finder / assets / js

This folder includes compiled versions of both theme.js and its minified counterpart, theme.min.js, accompanied by their respective mapping files.

Finder / assets / json

This folder contains configuration .json files for Lottie player animations.

Finder / assets / vendor

This directory houses the .js and .css files for all vendor plugins. For guidance on installing new vendor plugins, refer to this section.

appsettings.Development.json
appsettings.json
Finder.csproj
Finder.csproj.user
Finder.sln
Finder / package.json

The file holds essential metadata regarding your app or module, most notably, it comprises a list of dependencies to be installed from the npm repository when you run npm install command.

Top