mirror of https://github.com/ColorlibHQ/AdminLTE
52 lines
1.0 KiB
Markdown
52 lines
1.0 KiB
Markdown
---
|
|
layout: page
|
|
title: Introduction
|
|
---
|
|
|
|
AdminLTE can be installed using multiple methods. Pick your favorite method from the list below. Please be sure to check the dependencies section before continuing.
|
|
|
|
|
|
### Download from GitHub
|
|
|
|
Visit the releases section on GitHub and download the [latest release](https://github.com/ColorlibHQ/AdminLTE/releases).
|
|
|
|
|
|
### Grab from [jsdelivr](https://github.com/ColorlibHQ/AdminLTE/releases/latest) CDN :
|
|
|
|
_**Important Note**: You needed to add separately cdn links for plugins in your project._
|
|
|
|
```html
|
|
<script src="https://cdn.jsdelivr.net/npm/admin-lte@3.1/dist/js/adminlte.min.js"></script>
|
|
```
|
|
|
|
```html
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/admin-lte@3.1/dist/css/adminlte.min.css">
|
|
```
|
|
|
|
|
|
### Command Line
|
|
|
|
#### Via NPM
|
|
|
|
```bash
|
|
npm install admin-lte@^3.1 --save
|
|
```
|
|
|
|
#### Via Yarn
|
|
|
|
```bash
|
|
yarn add admin-lte@^3.1
|
|
```
|
|
|
|
#### Via Composer
|
|
|
|
```bash
|
|
composer require "almasaeed2010/adminlte=~3.1"
|
|
```
|
|
|
|
#### Via Git
|
|
|
|
```bash
|
|
git clone https://github.com/ColorlibHQ/AdminLTE.git
|
|
```
|