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 ├── genezio.yaml ├── 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 └── 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 | /.angular 36 | 37 | # e2e 38 | /e2e/*.js 39 | /e2e/*.map 40 | 41 | #System Files 42 | .DS_Store 43 | Thumbs.db 44 | package-lock.json 45 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | ## [1.9.0] - 2022-11-28 2 | ### Updates 3 | - update to Angular 14 4 | - update all dependencies to match the Angular 14 version 5 | 6 | ## [1.8.0] - 2022-05-06 7 | ### Updates 8 | - update to Angular 13 9 | - update all dependencies to match the Angular 13 version 10 | - routing, build and configuration issues fixed 11 | 12 | ## [1.7.0] - 2020-12-15 13 | ### Updates 14 | - update to Angular 11 15 | - update all dependencies to match Angular 11 version 16 | 17 | ## [1.6.0] - 2020-03-12 18 | ### Updates 19 | - update to Angular 9 20 | - update all dependencies to match Angular 9 version 21 | 22 | ## [1.5.0] - 2018-10-04 23 | ### Changes 24 | - update to Angular 6 25 | - added online documentation 26 | 27 | ## [1.4.0] - 2017-08-28 28 | ### Changes for Angular 4 29 | - added angular-cli 30 | - update to Angular 4 31 | 32 | ## [v1.3.0] 2017-08-28 33 | ### skipped for sync with Angular 4 version convention 34 | 35 | ## [v1.2.0] 2017-08-28 36 | ### skipped for sync with Angular 4 version convention 37 | 38 | ## [1.1.1] - 2017-03-21 39 | ### Added 40 | - added "@types/core-js": "0.9.35" in package 41 | 42 | ## [1.1.0] - 2017-03-01 43 | ### Added 44 | - fix version numbers in package.json and CSS and JS 45 | 46 | ## [1.0.2] - 2017-02-27 47 | ### Added 48 | - added upgrade to pro page 49 | - fixed navbar title 50 | - changed http://www.creative-tim.com/ with https://www.creative-tim.com/ 51 | 52 | ## [1.0.1] - 2017-02-13 53 | ### small fix 54 | - changes in routes(redirect '' to 'dashboard' + added HashLocationStrategy) 55 | - changes in documentation 56 | - changes in sidebar(cleaned li tags + changed z-index) 57 | - changes in footer(added current date) 58 | 59 | ## [1.0.0] - 2016-12-14 60 | ### initial Release 61 | -------------------------------------------------------------------------------- /ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 8 | 9 | 14 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Creative Tim (www.creative-tim.com) 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 | ## Links: 15 | 16 | + [Live Preview](https://demos.creative-tim.com/light-bootstrap-dashboard-angular2/dashboard) 17 | + [Light Bootstrap Dashboard PRO Angular](https://www.creative-tim.com/product/light-bootstrap-dashboard-pro-angular2/?ref=lbd-angular-github) ($49) 18 | 19 | ## Quick Start: 20 | 21 | Quick start options: 22 | 23 | + [Download from Github](https://github.com/creativetimofficial/light-bootstrap-dashboard-angular2/archive/master.zip). 24 | + [Download from Creative Tim](https://www.creative-tim.com/product/light-bootstrap-dashboard-angular2). 25 | + Clone the repo: `git clone https://github.com/creativetimofficial/light-bootstrap-dashboard-angular2.git`. 26 | 27 | ## Deploy 28 | 29 | :rocket: You can deploy your own version of the template to Genezio with one click: 30 | 31 | [](https://app.genez.io/start/deploy?repository=https://github.com/creativetimofficial/light-bootstrap-dashboard-angular2&utm_source=github&utm_medium=referral&utm_campaign=github-creativetim&utm_term=deploy-project&utm_content=button-head) 32 | 33 | ## Terminal Commands 34 | 35 | 1. Install NodeJs from [NodeJs Official Page](https://nodejs.org/en). 36 | 2. Open Terminal 37 | 3. Go to your file project 38 | 4. Run in terminal: ```npm install -g @angular/cli``` 39 | 5. Then: ```npm install``` 40 | 6. And: ```ng serve``` 41 | 7. Navigate to `http://localhost:4200/` 42 | 43 | ### What's included 44 | 45 | Within the download you'll find the following directories and files: 46 | ``` 47 | light-bootstrap-dashboard-angular 48 | ├── CHANGELOG.md 49 | ├── LICENSE.md 50 | ├── README.md 51 | ├── angular.json 52 | ├── documentation 53 | │ ├── css 54 | │ └── tutorial-lbd-angular2.html 55 | ├── e2e 56 | ├── karma.conf.js 57 | ├── package-lock.json 58 | ├── package.json 59 | ├── protractor.conf.js 60 | ├── src 61 | │ ├── app 62 | │ │ ├── app.component.css 63 | │ │ ├── app.component.html 64 | │ │ ├── app.component.spec.ts 65 | │ │ ├── app.component.ts 66 | │ │ ├── app.module.ts 67 | │ │ ├── app.routing.ts 68 | │ │ ├── home 69 | │ │ │ ├── home.component.css 70 | │ │ │ ├── home.component.html 71 | │ │ │ ├── home.component.spec.ts 72 | │ │ │ └── home.component.ts 73 | │ │ ├── icons 74 | │ │ │ ├── icons.component.css 75 | │ │ │ ├── icons.component.html 76 | │ │ │ ├── icons.component.spec.ts 77 | │ │ │ └── icons.component.ts 78 | │ │ ├── layouts 79 | │ │ │ └── admin-layout 80 | │ │ │ ├── admin-layout.component.html 81 | │ │ │ ├── admin-layout.component.scss 82 | │ │ │ ├── admin-layout.component.spec.ts 83 | │ │ │ ├── admin-layout.component.ts 84 | │ │ │ ├── admin-layout.module.ts 85 | │ │ │ └── admin-layout.routing.ts 86 | │ │ ├── lbd 87 | │ │ │ ├── lbd-chart 88 | │ │ │ │ ├── lbd-chart.component.html 89 | │ │ │ │ └── lbd-chart.component.ts 90 | │ │ │ └── lbd.module.ts 91 | │ │ ├── maps 92 | │ │ │ ├── maps.component.css 93 | │ │ │ ├── maps.component.html 94 | │ │ │ ├── maps.component.spec.ts 95 | │ │ │ └── maps.component.ts 96 | │ │ ├── notifications 97 | │ │ │ ├── notifications.component.css 98 | │ │ │ ├── notifications.component.html 99 | │ │ │ ├── notifications.component.spec.ts 100 | │ │ │ └── notifications.component.ts 101 | │ │ ├── shared 102 | │ │ │ ├── footer 103 | │ │ │ │ ├── footer.component.html 104 | │ │ │ │ ├── footer.component.ts 105 | │ │ │ │ └── footer.module.ts 106 | │ │ │ └── navbar 107 | │ │ │ ├── navbar.component.html 108 | │ │ │ ├── navbar.component.ts 109 | │ │ │ └── navbar.module.ts 110 | │ │ ├── sidebar 111 | │ │ │ ├── sidebar.component.html 112 | │ │ │ ├── sidebar.component.ts 113 | │ │ │ └── sidebar.module.ts 114 | │ │ ├── tables 115 | │ │ │ ├── tables.component.css 116 | │ │ │ ├── tables.component.html 117 | │ │ │ ├── tables.component.spec.ts 118 | │ │ │ └── tables.component.ts 119 | │ │ ├── typography 120 | │ │ │ ├── typography.component.css 121 | │ │ │ ├── typography.component.html 122 | │ │ │ ├── typography.component.spec.ts 123 | │ │ │ └── typography.component.ts 124 | │ │ ├── upgrade 125 | │ │ │ ├── upgrade.component.css 126 | │ │ │ ├── upgrade.component.html 127 | │ │ │ ├── upgrade.component.spec.ts 128 | │ │ │ └── upgrade.component.ts 129 | │ │ └── user 130 | │ │ ├── user.component.css 131 | │ │ ├── user.component.html 132 | │ │ ├── user.component.spec.ts 133 | │ │ └── user.component.ts 134 | │ ├── assets 135 | │ │ ├── css 136 | │ │ ├── fonts 137 | │ │ ├── img 138 | │ │ └── sass 139 | │ │ ├── lbd 140 | │ │ └── light-bootstrap-dashboard.scss 141 | │ ├── environments 142 | │ ├── favicon.ico 143 | │ ├── index.html 144 | │ ├── main.ts 145 | │ ├── polyfills.ts 146 | │ ├── styles.css 147 | │ ├── test.ts 148 | │ └── tsconfig.json 149 | ├── tslint.json 150 | └── typings.json 151 | 152 | ``` 153 | ## Useful Links 154 | 155 | 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 |