Contact Form

Name

Email *

Message *

How AdminLTE-3 template integrate to angular 9

No comments

Step 1

npm install -g @angular/cli
ng new my-app
ng new my-app
? Would you like to add Angular routing? Yes
? Which stylesheet format would you like to use? SCSS   [ http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax ]
ng serve 

Step 2

From the Admin LTE file copy the dist and plugins folder to assets folder
 <!doctype html>  
 <html lang="en">  
 <head>  
  <meta charset="utf-8">  
  <title>Mltbapp</title>  
  <base href="/">  
  <link rel="icon" type="image/x-icon" href="favicon.ico">  
  <!-- Bootstrap 3.3.7 -->  
 <linkrel="stylesheet" href="assets/bower_components/bootstrap/dist/css/bootstrap.min.css">  
  <!-- Tell the browser to be responsive to screen width -->  
  <meta name="viewport" content="width=device-width, initial-scale=1">  
  <!-- Font Awesome -->  
  <link rel="stylesheet" href="assets/plugins/fontawesome-free/css/all.min.css">  
  <!-- Ionicons -->  
  <link rel="stylesheet" href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css">  
  <!-- Tempusdominus Bbootstrap 4 -->  
  <link rel="stylesheet" href="assets/plugins/tempusdominus-bootstrap-4/css/tempusdominus-bootstrap-4.min.css">  
  <!-- iCheck -->  
  <link rel="stylesheet" href="assets/plugins/icheck-bootstrap/icheck-bootstrap.min.css">  
  <!-- Theme style -->  
  <link rel="stylesheet" href="assets/dist/css/adminlte.min.css">  
  <!-- overlayScrollbars -->  
  <link rel="stylesheet" href="assets/plugins/overlayScrollbars/css/OverlayScrollbars.min.css">  
  <!-- Daterange picker -->  
  <link rel="stylesheet" href="assets/plugins/daterangepicker/daterangepicker.css">  
  <!-- Google Font: Source Sans Pro -->  
  <link href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,400i,700" rel="stylesheet">  
 </head>  
 <body class="hold-transition sidebar-mini layout-fixed layout-navbar-fixed layout-footer-fixed">  
  <div class="wrapper">  
  <app-root></app-root>  
 </div>  
 <!-- jQuery -->  
 <script src="assets/plugins/jquery/jquery.min.js"></script>  
 <!-- jQuery UI 1.11.4 -->  
 <script src="assets/plugins/jquery-ui/jquery-ui.min.js"></script>  
 <!-- Resolve conflict in jQuery UI tooltip with Bootstrap tooltip -->  
 <script>  
  $.widget.bridge('uibutton', $.ui.button)  
 </script>  
 <!-- Bootstrap 4 -->  
 <script src="assets/plugins/bootstrap/js/bootstrap.bundle.min.js"></script>  
 <!-- ChartJS -->  
 <script src="assets/plugins/chart.js/Chart.min.js"></script>  
 <!-- Sparkline -->  
 <script src="assets/plugins/sparklines/sparkline.js"></script>  
 <!-- daterangepicker -->  
 <script src="assets/plugins/moment/moment.min.js"></script>  
 <script src="assets/plugins/daterangepicker/daterangepicker.js"></script>  
 <!-- Tempusdominus Bootstrap 4 -->  
 <script src="assets/plugins/tempusdominus-bootstrap-4/js/tempusdominus-bootstrap-4.min.js"></script>  
 <!-- overlayScrollbars -->  
 <script src="assets/plugins/overlayScrollbars/js/jquery.overlayScrollbars.min.js"></script>  
 <!-- AdminLTE App -->  
 <script src="assets/dist/js/adminlte.js"></script>  
 <!-- AdminLTE for demo purposes -->  
 <script src="assets/dist/js/demo.js"></script>  
 </body>  
 </html>  

 ng g c appheader  
 ng g c appmenu  
 ng g c appfooter  
 ng g c appsetting  
 ////app.component.html  
 <app-appheader></app-appheader>  
 <app-appmenu></app-appmenu>  
 <router-outlet></router-outlet>  
 <app-appfooter></app-appfooter>  
 <app-appsetting></app-appsetting>  

Past code in respective component
if you want to code add comment 

No comments :

Post a Comment