AdminLTE/docs/index.md

41 lines
1.3 KiB
Markdown
Raw Permalink Normal View History

---
layout: page
title: Introduction
---
2021-03-15 23:25:08 +01:00
## Quick start
There are multiple ways to install AdminLTE.
2021-03-15 23:25:08 +01:00
### Download & Changelog:
Always Recommended to download from GitHub latest release [AdminLTE 3](https://github.com/ColorlibHQ/AdminLTE/releases/latest) for bug free and latest features.\
Visit the [releases](https://github.com/ColorlibHQ/AdminLTE/releases) page to view the changelog.\
Legacy Releases are [AdminLTE 2](https://github.com/ColorlibHQ/AdminLTE/releases/tag/v2.4.18) / [AdminLTE 1](https://github.com/ColorlibHQ/AdminLTE/releases/tag/1.3.1).
2020-06-02 15:57:24 +02:00
2021-03-15 23:25:08 +01:00
## Stable release
### Grab from [jsdelivr](https://www.jsdelivr.com/package/npm/admin-lte) CDN:
2021-01-28 20:09:32 +01:00
_**Important Note**: You needed to add separately cdn links for plugins in your project._
```html
2021-03-22 08:29:43 +01:00
<script src="https://cdn.jsdelivr.net/npm/admin-lte@3.1/dist/js/adminlte.min.js"></script>
2021-01-28 20:09:32 +01:00
```
```html
2021-03-22 08:29:43 +01:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/admin-lte@3.1/dist/css/adminlte.min.css">
2021-01-28 20:09:32 +01:00
```
2021-03-15 23:25:08 +01:00
### Using The Command Line:
_**Important Note**: To install it via npm/Yarn, you need at least Node.js 10 or higher._
#### Via npm
```bash
2021-03-22 08:29:43 +01:00
npm install admin-lte@^3.1 --save
```
2020-06-02 15:57:24 +02:00
#### Via Yarn
```bash
2021-03-22 08:29:43 +01:00
yarn add admin-lte@^3.1
```
2020-06-02 15:57:24 +02:00
#### Via Composer
```bash
2021-03-22 08:29:43 +01:00
composer require "almasaeed2010/adminlte=~3.1"
2021-03-15 23:25:08 +01:00
```
#### Via Git
```bash
git clone https://github.com/ColorlibHQ/AdminLTE.git
```