10 |
16 |
20 |
11 |
12 | {{ item.title }}
13 |
14 |
15 | 16 |
17 | {{ footerText }}
18 |
19 | ├── .github └── workflows │ └── main.yml ├── .gitignore ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.md ├── README.md ├── angular.json ├── documentation ├── css │ ├── bootstrap.min.css │ ├── documentation.css │ └── light-bootstrap-dashboard.css └── tutorial-lbd-angular2.html ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── src ├── app │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── app.routing.ts │ ├── home │ │ ├── home.component.css │ │ ├── home.component.html │ │ ├── home.component.spec.ts │ │ └── home.component.ts │ ├── icons │ │ ├── icons.component.css │ │ ├── icons.component.html │ │ ├── icons.component.spec.ts │ │ └── icons.component.ts │ ├── layouts │ │ └── admin-layout │ │ │ ├── admin-layout.component.html │ │ │ ├── admin-layout.component.scss │ │ │ ├── admin-layout.component.spec.ts │ │ │ ├── admin-layout.component.ts │ │ │ ├── admin-layout.module.ts │ │ │ └── admin-layout.routing.ts │ ├── lbd │ │ ├── lbd-chart │ │ │ ├── lbd-chart.component.html │ │ │ └── lbd-chart.component.ts │ │ └── lbd.module.ts │ ├── maps │ │ ├── maps.component.css │ │ ├── maps.component.html │ │ ├── maps.component.spec.ts │ │ └── maps.component.ts │ ├── notifications │ │ ├── notifications.component.css │ │ ├── notifications.component.html │ │ ├── notifications.component.spec.ts │ │ └── notifications.component.ts │ ├── shared │ │ ├── footer │ │ │ ├── footer.component.html │ │ │ ├── footer.component.ts │ │ │ └── footer.module.ts │ │ └── navbar │ │ │ ├── navbar.component.html │ │ │ ├── navbar.component.ts │ │ │ └── navbar.module.ts │ ├── sidebar │ │ ├── sidebar.component.html │ │ ├── sidebar.component.ts │ │ └── sidebar.module.ts │ ├── tables │ │ ├── tables.component.css │ │ ├── tables.component.html │ │ ├── tables.component.spec.ts │ │ └── tables.component.ts │ ├── typography │ │ ├── typography.component.css │ │ ├── typography.component.html │ │ ├── typography.component.spec.ts │ │ └── typography.component.ts │ ├── upgrade │ │ ├── upgrade.component.css │ │ ├── upgrade.component.html │ │ ├── upgrade.component.spec.ts │ │ └── upgrade.component.ts │ └── user │ │ ├── user.component.css │ │ ├── user.component.html │ │ ├── user.component.spec.ts │ │ └── user.component.ts ├── assets │ ├── .gitkeep │ ├── css │ │ ├── demo.css │ │ └── pe-icon-7-stroke.css │ ├── fonts │ │ ├── Pe-icon-7-stroke.eot │ │ ├── Pe-icon-7-stroke.svg │ │ ├── Pe-icon-7-stroke.ttf │ │ └── Pe-icon-7-stroke.woff │ ├── img │ │ ├── angular-red.png │ │ ├── angular2-logo-white.png │ │ ├── angular2-logo.png │ │ ├── default-avatar.png │ │ ├── faces │ │ │ ├── face-0.jpg │ │ │ ├── face-1.jpg │ │ │ ├── face-2.jpg │ │ │ ├── face-3.jpg │ │ │ ├── face-4.jpg │ │ │ ├── face-5.jpg │ │ │ ├── face-6.jpg │ │ │ ├── face-7.jpg │ │ │ └── tim_vector.jpe │ │ ├── favicon.ico │ │ ├── full-screen-image-3.jpg │ │ ├── loader-preview.svg │ │ ├── loading-bubbles.svg │ │ ├── mask.png │ │ ├── new_logo.png │ │ ├── opt_lbd_angular_thumbnail.jpg │ │ ├── sidebar-1.jpg │ │ ├── sidebar-2.jpg │ │ ├── sidebar-3.jpg │ │ ├── sidebar-4.jpg │ │ ├── sidebar-5.jpg │ │ └── tim_80x80.png │ └── sass │ │ ├── lbd │ │ ├── _alerts.scss │ │ ├── _buttons.scss │ │ ├── _cards.scss │ │ ├── _chartist.scss │ │ ├── _checkbox-radio-switch.scss │ │ ├── _dropdown.scss │ │ ├── _footers.scss │ │ ├── _inputs.scss │ │ ├── _misc.scss │ │ ├── _mixins.scss │ │ ├── _navbars.scss │ │ ├── _responsive.scss │ │ ├── _sidebar-and-main-panel.scss │ │ ├── _tables.scss │ │ ├── _typography.scss │ │ ├── _variables.scss │ │ └── mixins │ │ │ ├── _buttons.scss │ │ │ ├── _cards.scss │ │ │ ├── _chartist.scss │ │ │ ├── _icons.scss │ │ │ ├── _inputs.scss │ │ │ ├── _labels.scss │ │ │ ├── _morphing-buttons.scss │ │ │ ├── _navbars.scss │ │ │ ├── _social-buttons.scss │ │ │ ├── _tabs.scss │ │ │ ├── _transparency.scss │ │ │ └── _vendor-prefixes.scss │ │ └── light-bootstrap-dashboard.scss ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts └── tsconfig.json ├── tslint.json └── typings.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- 1 | name: Autocloser 2 | on: [issues] 3 | jobs: 4 | autoclose: 5 | runs-on: ubuntu-latest 6 | steps: 7 | - name: Issue auto-closer 8 | uses: roots/issue-closer-action@v1.1 9 | with: 10 | repo-token: ${{ secrets.GITHUB_TOKEN }} 11 | issue-close-message: "@${issue.user.login} this issue was automatically closed because it did not follow the bellow rules:\n\n
\n\n\n\nIMPORTANT: Please use the following link to create a new issue:\n\nhttps://www.creative-tim.com/new-issue/light-bootstrap-dashboard-angular2\n\n**If your issue was not created using the app above, it will be closed immediately.**\n\n\n\nLove Creative Tim? Do you need Angular, React, Vuejs or HTML? You can visit:\n👉 https://www.creative-tim.com/bundles\n👉 https://www.creative-tim.com\n\n\n\n\n" 12 | issue-pattern: (\#\#\# Version([\S\s.*]*?)\#\#\# Reproduction link([\S\s.*]*?)\#\#\# Operating System([\S\s.*]*?)\#\#\# Device([\S\s.*]*?)\#\#\# Browser & Version([\S\s.*]*?)\#\#\# Steps to reproduce([\S\s.*]*?)\#\#\# What is expected([\S\s.*]*?)\#\#\# What is actually happening([\S\s.*]*?)---([\S\s.*]*?)\#\#\# Solution([\S\s.*]*?)\#\#\# Additional comments([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>)|(\#\#\# What is your enhancement([\S\s.*]*?)\<\!-- generated by creative-tim-issues\. DO NOT REMOVE --\>) 13 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # See http://help.github.com/ignore-files/ for more about ignoring files. 2 | 3 | # compiled output 4 | /dist 5 | /tmp 6 | 7 | # dependencies 8 | /node_modules 9 | ./node_modules 10 | node_modules 11 | 12 | # IDEs and editors 13 | /.idea 14 | .project 15 | .classpath 16 | .c9/ 17 | *.launch 18 | .settings/ 19 | 20 | # IDE - VSCode 21 | .vscode/* 22 | !.vscode/settings.json 23 | !.vscode/tasks.json 24 | !.vscode/launch.json 25 | !.vscode/extensions.json 26 | 27 | # misc 28 | /.sass-cache 29 | /connect.lock 30 | /coverage/* 31 | /libpeerconnection.log 32 | npm-debug.log 33 | testem.log 34 | /typings 35 | 36 | # e2e 37 | /e2e/*.js 38 | /e2e/*.map 39 | 40 | #System Files 41 | .DS_Store 42 | Thumbs.db 43 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [1.7.0] - 2020-12-15 2 | ### Updates 3 | - update to Angular 11 4 | - update all dependencies to match Angular 11 version 5 | 6 | ## [1.6.0] - 2020-03-12 7 | ### Updates 8 | - update to Angular 9 9 | - update all dependencies to match Angular 9 version 10 | 11 | ## [1.5.0] - 2018-10-04 12 | ### Changes 13 | - update to Angular 6 14 | - added online documentation 15 | 16 | ## [1.4.0] - 2017-08-28 17 | ### Changes for Angular 4 18 | - added angular-cli 19 | - update to Angular 4 20 | 21 | ## [v1.3.0] 2017-08-28 22 | ### skipped for sync with Angular 4 version convention 23 | 24 | ## [v1.2.0] 2017-08-28 25 | ### skipped for sync with Angular 4 version convention 26 | 27 | ## [1.1.1] - 2017-03-21 28 | ### Added 29 | - added "@types/core-js": "0.9.35" in package 30 | 31 | ## [1.1.0] - 2017-03-01 32 | ### Added 33 | - fix version numbers in package.json and CSS and JS 34 | 35 | ## [1.0.2] - 2017-02-27 36 | ### Added 37 | - added upgrade to pro page 38 | - fixed navbar title 39 | - changed http://www.creative-tim.com/ with https://www.creative-tim.com/ 40 | 41 | ## [1.0.1] - 2017-02-13 42 | ### small fix 43 | - changes in routes(redirect '' to 'dashboard' + added HashLocationStrategy) 44 | - changes in documentation 45 | - changes in sidebar(cleaned li tags + changed z-index) 46 | - changes in footer(added current date) 47 | 48 | ## [1.0.0] - 2016-12-14 49 | ### initial Release 50 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 Ashutosh Mohanty 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # [Light Bootstrap Dashboard Angular](https://demos.creative-tim.com/light-bootstrap-dashboard-angular2/dashboard) 2 | [![version][version-badge]][CHANGELOG] ![license][license-badge] 3 | 4 |  5 | 6 | **[Light Bootstrap Dashboard Angular](https://demos.creative-tim.com/light-bootstrap-dashboard-angular2/dashboard)** is an admin dashboard template designed to be beautiful and simple. It is built on top of Bootstrap 3, using [Light Bootstrap Dashboard](https://www.creative-tim.com/product/light-bootstrap-dashboard) and it is fully responsive. It comes with a big collections of elements that will offer you multiple possibilities to create the app that best fits your needs. It can be used to create admin panels, project management systems, web applications backend, CMS or CRM. 7 | 8 | The product represents a big suite of front-end developer tools that can help you jump start your project. We have created it thinking about things you actually need in a dashboard. Light Bootstrap Dashboard Angular 2 contains multiple handpicked and optimized plugins. Everything is designed to fit with one another. As you will be able to see, the dashboard you can access on Creative Tim is a customization of this product. 9 | 10 | It comes with 6 filter colors for the sidebar (“black”, “azure”,”green”,”orange”,”red”,”purple”) and an option to have a background image. 11 | 12 | Special thanks go to: Robert McIntosh for the notification system Chartist for the wonderful charts We are very excited to share this dashboard with you and we look forward to hearing your feedback! 13 | 14 | 15 | ## Quick Start: 16 | 17 | Quick start options: 18 | 19 | + [Download from Github](https://github.com/creativetimofficial/light-bootstrap-dashboard-angular2/archive/master.zip). 20 | + [Download from Creative Tim](https://www.creative-tim.com/product/light-bootstrap-dashboard-angular2). 21 | + Clone the repo: `git clone https://github.com/creativetimofficial/light-bootstrap-dashboard-angular2.git`. 22 | 23 | ## Terminal Commands 24 | 25 | 1. Install NodeJs from [NodeJs Official Page](https://nodejs.org/en). 26 | 2. Open Terminal 27 | 3. Go to your file project 28 | 4. Run in terminal: ```npm install -g @angular/cli``` 29 | 5. Then: ```npm install``` 30 | 6. And: ```ng serve``` 31 | 7. Navigate to `http://localhost:4200/` 32 | 33 | ### What's included 34 | 35 | Within the download you'll find the following directories and files: 36 | ``` 37 | light-bootstrap-dashboard-angular 38 | ├── CHANGELOG.md 39 | ├── LICENSE.md 40 | ├── README.md 41 | ├── angular.json 42 | ├── documentation 43 | │ ├── css 44 | │ └── tutorial-lbd-angular2.html 45 | ├── e2e 46 | ├── karma.conf.js 47 | ├── package-lock.json 48 | ├── package.json 49 | ├── protractor.conf.js 50 | ├── src 51 | │ ├── app 52 | │ │ ├── app.component.css 53 | │ │ ├── app.component.html 54 | │ │ ├── app.component.spec.ts 55 | │ │ ├── app.component.ts 56 | │ │ ├── app.module.ts 57 | │ │ ├── app.routing.ts 58 | │ │ ├── home 59 | │ │ │ ├── home.component.css 60 | │ │ │ ├── home.component.html 61 | │ │ │ ├── home.component.spec.ts 62 | │ │ │ └── home.component.ts 63 | │ │ ├── icons 64 | │ │ │ ├── icons.component.css 65 | │ │ │ ├── icons.component.html 66 | │ │ │ ├── icons.component.spec.ts 67 | │ │ │ └── icons.component.ts 68 | │ │ ├── layouts 69 | │ │ │ └── admin-layout 70 | │ │ │ ├── admin-layout.component.html 71 | │ │ │ ├── admin-layout.component.scss 72 | │ │ │ ├── admin-layout.component.spec.ts 73 | │ │ │ ├── admin-layout.component.ts 74 | │ │ │ ├── admin-layout.module.ts 75 | │ │ │ └── admin-layout.routing.ts 76 | │ │ ├── lbd 77 | │ │ │ ├── lbd-chart 78 | │ │ │ │ ├── lbd-chart.component.html 79 | │ │ │ │ └── lbd-chart.component.ts 80 | │ │ │ └── lbd.module.ts 81 | │ │ ├── maps 82 | │ │ │ ├── maps.component.css 83 | │ │ │ ├── maps.component.html 84 | │ │ │ ├── maps.component.spec.ts 85 | │ │ │ └── maps.component.ts 86 | │ │ ├── notifications 87 | │ │ │ ├── notifications.component.css 88 | │ │ │ ├── notifications.component.html 89 | │ │ │ ├── notifications.component.spec.ts 90 | │ │ │ └── notifications.component.ts 91 | │ │ ├── shared 92 | │ │ │ ├── footer 93 | │ │ │ │ ├── footer.component.html 94 | │ │ │ │ ├── footer.component.ts 95 | │ │ │ │ └── footer.module.ts 96 | │ │ │ └── navbar 97 | │ │ │ ├── navbar.component.html 98 | │ │ │ ├── navbar.component.ts 99 | │ │ │ └── navbar.module.ts 100 | │ │ ├── sidebar 101 | │ │ │ ├── sidebar.component.html 102 | │ │ │ ├── sidebar.component.ts 103 | │ │ │ └── sidebar.module.ts 104 | │ │ ├── tables 105 | │ │ │ ├── tables.component.css 106 | │ │ │ ├── tables.component.html 107 | │ │ │ ├── tables.component.spec.ts 108 | │ │ │ └── tables.component.ts 109 | │ │ ├── typography 110 | │ │ │ ├── typography.component.css 111 | │ │ │ ├── typography.component.html 112 | │ │ │ ├── typography.component.spec.ts 113 | │ │ │ └── typography.component.ts 114 | │ │ ├── upgrade 115 | │ │ │ ├── upgrade.component.css 116 | │ │ │ ├── upgrade.component.html 117 | │ │ │ ├── upgrade.component.spec.ts 118 | │ │ │ └── upgrade.component.ts 119 | │ │ └── user 120 | │ │ ├── user.component.css 121 | │ │ ├── user.component.html 122 | │ │ ├── user.component.spec.ts 123 | │ │ └── user.component.ts 124 | │ ├── assets 125 | │ │ ├── css 126 | │ │ ├── fonts 127 | │ │ ├── img 128 | │ │ └── sass 129 | │ │ ├── lbd 130 | │ │ └── light-bootstrap-dashboard.scss 131 | │ ├── environments 132 | │ ├── favicon.ico 133 | │ ├── index.html 134 | │ ├── main.ts 135 | │ ├── polyfills.ts 136 | │ ├── styles.css 137 | │ ├── test.ts 138 | │ └── tsconfig.json 139 | ├── tslint.json 140 | └── typings.json 141 | 142 | ``` 143 | ## Useful Links 144 | 145 | More products from Creative Tim:
{{ subtitle }}
5 |Handcrafted by our friend Robert McIntosh. Please checkout the full documentation.
7 |Here is a subtitle for this table
9 |{{ cell }} | 15 |
---|
{{cell}} | 20 |
Here is a subtitle for this table
32 |{{ cell }} | 38 |
---|
{{cell}} | 43 |
Created using Roboto Font Family
9 |Header 1
Light Bootstrap Table Heading 14 |Header 2
Light Bootstrap Table Heading 18 |Header 3
Light Bootstrap Table Heading 21 |Header 4
Light Bootstrap Table Heading 24 |Header 5
Light Bootstrap Table Heading 27 |Header 6
Light Bootstrap Table Heading 30 |ParagraphLorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam.
33 |Quote
36 |37 |44 |38 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam. 39 |
40 | 41 | Steve Jobs, CEO Apple 42 | 43 |
Muted Text
48 |49 | Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet. 50 |
51 |Coloured Text 57 |
58 |59 | Text Primary - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 60 |
61 |62 | Text Info - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 63 |
64 |65 | Text Success - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 66 |
67 |68 | Text Warning - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 69 |
70 |71 | Text Danger - Light Bootstrap Table Heading and complex bootstrap dashboard you've ever seen on the internet. 72 |
73 |Small Tag
Header with small subtitleLooking for more components? Please check our Premium Version of Light Bootstrap Dashboard Angular.
9 |16 | | Free | 17 |PRO | 18 |
---|---|---|
Components | 23 |16 | 24 |115+ | 25 |
Plugins | 28 |4 | 29 |14+ | 30 |
Example Pages | 33 |4 | 34 |22+ | 35 |
Documentation | 38 |39 | 40 | | 41 |42 | 43 | | 44 |
SASS Files | 47 |48 | | 49 | |
Login/Register/Lock Pages | 52 |53 | | 54 | |
Premium Support | 57 |58 | | 59 | |
62 | | Free | 63 |Just $49 | 64 |
67 | | 68 | Current Version 69 | | 70 |71 | Upgrade to PRO 72 | | 73 |
"Lamborghini Mercy
107 | Your chick she so thirsty
108 | I'm in that two seat Lambo"
109 |