实例介绍
Angulr – Bootstrap Admin Web App with AngularJS-v2.2.1 演示地址: http://themeforest.net/item/angulr-bootstrap-admin-web-app-with-angularjs/8437259
【实例截图】
【核心代码】
angulr
└── angulr
├── bower.json
├── grunt
│ ├── bump.js
│ ├── clean.js
│ ├── concat.js
│ ├── copy.js
│ ├── htmlmin.js
│ ├── index.js
│ ├── recess.js
│ ├── swig.js
│ ├── uglify.js
│ ├── usemin.js
│ ├── useminPrepare.js
│ └── watch.js
├── GruntFile.js
├── html
│ ├── api
│ │ ├── datatable.json
│ │ ├── groups
│ │ ├── login
│ │ ├── saveUser
│ │ └── signup
│ ├── css
│ │ ├── app.css
│ │ ├── app.min.css
│ │ ├── app.rtl.css
│ │ ├── font.css
│ │ ├── material-design-icons.css
│ │ └── md.css
│ ├── dashboard.html
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── glyphicons-halflings-regular.woff2
│ │ ├── Material-Design-Icons.eot
│ │ ├── Material-Design-Icons.svg
│ │ ├── Material-Design-Icons.ttf
│ │ ├── Material-Design-Icons.woff
│ │ └── sourcesanspro
│ │ ├── sourcesanspro-bold.woff
│ │ ├── sourcesanspro-light.woff
│ │ └── sourcesanspro.woff
│ ├── form_element.html
│ ├── form_elements.html
│ ├── img
│ │ ├── a0.jpg
│ │ ├── a10.jpg
│ │ ├── a1.jpg
│ │ ├── a2.jpg
│ │ ├── a3.jpg
│ │ ├── a4.jpg
│ │ ├── a5.jpg
│ │ ├── a6.jpg
│ │ ├── a7.jpg
│ │ ├── a8.jpg
│ │ ├── a9.jpg
│ │ ├── b0.jpg
│ │ ├── b10.jpg
│ │ ├── b11.jpg
│ │ ├── b12.jpg
│ │ ├── b13.jpg
│ │ ├── b14.jpg
│ │ ├── b15.jpg
│ │ ├── b16.jpg
│ │ ├── b17.jpg
│ │ ├── b18.jpg
│ │ ├── b19.jpg
│ │ ├── b1.jpg
│ │ ├── b20.jpg
│ │ ├── b2.jpg
│ │ ├── b3.jpg
│ │ ├── b4.jpg
│ │ ├── b5.jpg
│ │ ├── b6.jpg
│ │ ├── b7.jpg
│ │ ├── b8.jpg
│ │ ├── b9.jpg
│ │ ├── bg.jpg
│ │ ├── c0.jpg
│ │ ├── c1.jpg
│ │ ├── c2.jpg
│ │ ├── c3.jpg
│ │ ├── c4.jpg
│ │ ├── c5.jpg
│ │ ├── c6.jpg
│ │ ├── c7.jpg
│ │ ├── c8.jpg
│ │ ├── c9.jpg
│ │ ├── logo.png
│ │ └── p0.jpg
│ ├── index.html
│ ├── js
│ │ ├── app.min.js
│ │ ├── app.src.js
│ │ ├── ui-client.js
│ │ ├── ui-jp.config.js
│ │ ├── ui-jp.js
│ │ ├── ui-load.js
│ │ ├── ui-nav.js
│ │ └── ui-toggle.js
│ ├── layout_app.html
│ ├── layout_boxed.html
│ ├── layout_fullwidth.html
│ ├── mail.html
│ ├── page_404.html
│ ├── page_forgotpwd.html
│ ├── page_invoice.html
│ ├── page_lockme.html
│ ├── page_post.html
│ ├── page_price.html
│ ├── page_profile.html
│ ├── page_search.html
│ ├── page_signin.html
│ ├── page_signup.html
│ ├── table_datatable.html
│ ├── table_footable.html
│ ├── table_static.html
│ ├── ui_button.html
│ ├── ui_chart.html
│ ├── ui_grid.html
│ ├── ui_icon.html
│ ├── ui_jvectormap.html
│ ├── ui_portlet.html
│ ├── ui_sortable.html
│ ├── ui_timeline.html
│ └── ui_widget.html
├── landing
│ ├── css
│ │ ├── app.css
│ │ ├── app.min.css
│ │ ├── font.css
│ │ ├── material-design-icons.css
│ │ └── md.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── glyphicons-halflings-regular.woff2
│ │ ├── Material-Design-Icons.eot
│ │ ├── Material-Design-Icons.svg
│ │ ├── Material-Design-Icons.ttf
│ │ ├── Material-Design-Icons.woff
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ ├── Simple-Line-Icons.woff
│ │ └── sourcesanspro
│ │ ├── sourcesanspro-bold.woff
│ │ ├── sourcesanspro-light.woff
│ │ └── sourcesanspro.woff
│ ├── img
│ │ └── logo.png
│ ├── index.html
│ ├── index.swig
│ ├── js
│ │ └── landing.js
│ └── tpl
│ ├── footer.tpl
│ ├── header.tpl
│ └── layout.tpl
├── libs
│ ├── angular
│ │ ├── angular
│ │ │ └── angular.js
│ │ ├── angular-animate
│ │ │ └── angular-animate.js
│ │ ├── angular-aria
│ │ │ └── angular-aria.js
│ │ ├── angular-bootstrap
│ │ │ └── ui-bootstrap-tpls.js
│ │ ├── angular-bootstrap-nav-tree
│ │ │ └── dist
│ │ │ ├── abn_tree.css
│ │ │ └── abn_tree_directive.js
│ │ ├── angular-cookies
│ │ │ └── angular-cookies.js
│ │ ├── angular-file-upload
│ │ │ └── angular-file-upload.js
│ │ ├── angularjs-toaster
│ │ │ ├── toaster.css
│ │ │ └── toaster.js
│ │ ├── angular-material
│ │ │ ├── angular-material.css
│ │ │ └── angular-material.js
│ │ ├── angular-messages
│ │ │ └── angular-messages.js
│ │ ├── angular-resource
│ │ │ └── angular-resource.js
│ │ ├── angular-sanitize
│ │ │ └── angular-sanitize.js
│ │ ├── angular-skycons
│ │ │ ├── angular-skycons.js
│ │ │ └── angular-skycons.min.js
│ │ ├── angular-smart-table
│ │ │ └── dist
│ │ │ ├── smart-table.js
│ │ │ └── smart-table.min.js
│ │ ├── angular-touch
│ │ │ └── angular-touch.js
│ │ ├── angular-translate
│ │ │ └── angular-translate.js
│ │ ├── angular-translate-loader-static-files
│ │ │ └── angular-translate-loader-static-files.js
│ │ ├── angular-translate-storage-cookie
│ │ │ └── angular-translate-storage-cookie.js
│ │ ├── angular-translate-storage-local
│ │ │ └── angular-translate-storage-local.js
│ │ ├── angular-ui-calendar
│ │ │ └── src
│ │ │ └── calendar.js
│ │ ├── angular-ui-grid
│ │ │ ├── ui-grid.bootstrap.css
│ │ │ ├── ui-grid.css
│ │ │ ├── ui-grid.eot
│ │ │ ├── ui-grid.js
│ │ │ ├── ui-grid.min.css
│ │ │ ├── ui-grid.min.js
│ │ │ ├── ui-grid.svg
│ │ │ ├── ui-grid.ttf
│ │ │ └── ui-grid.woff
│ │ ├── angular-ui-router
│ │ │ └── release
│ │ │ ├── angular-ui-router.js
│ │ │ └── angular-ui-router.min.js
│ │ ├── angular-ui-select
│ │ │ └── dist
│ │ │ ├── select.css
│ │ │ ├── select.js
│ │ │ ├── select.min.css
│ │ │ ├── select.min.css.map
│ │ │ ├── select.min.js
│ │ │ └── select.min.js.map
│ │ ├── angular-ui-utils
│ │ │ └── ui-utils.js
│ │ ├── angular-xeditable
│ │ │ └── dist
│ │ │ ├── css
│ │ │ │ └── xeditable.css
│ │ │ └── js
│ │ │ ├── xeditable.js
│ │ │ └── xeditable.min.js
│ │ ├── jquery.easy-pie-chart
│ │ │ └── dist
│ │ │ └── angular.easypiechart.js
│ │ ├── ng-grid
│ │ │ ├── build
│ │ │ │ ├── ng-grid.debug.js
│ │ │ │ ├── ng-grid.js
│ │ │ │ └── ng-grid.min.js
│ │ │ ├── ng-grid.bootstrap.css
│ │ │ └── ng-grid.min.css
│ │ ├── ngImgCrop
│ │ │ └── compile
│ │ │ └── minified
│ │ │ ├── ng-img-crop.css
│ │ │ └── ng-img-crop.js
│ │ ├── ngstorage
│ │ │ └── ngStorage.js
│ │ ├── oclazyload
│ │ │ └── dist
│ │ │ ├── ocLazyLoad.js
│ │ │ └── ocLazyLoad.min.js
│ │ ├── textAngular
│ │ │ └── dist
│ │ │ ├── textAngular.min.js
│ │ │ └── textAngular-sanitize.min.js
│ │ ├── venturocket-angular-slider
│ │ │ └── build
│ │ │ ├── angular-slider.css
│ │ │ ├── angular-slider.js
│ │ │ └── angular-slider.min.js
│ │ ├── videogular
│ │ │ └── videogular.min.js
│ │ ├── videogular-buffering
│ │ │ └── buffering.min.js
│ │ ├── videogular-controls
│ │ │ └── controls.min.js
│ │ ├── videogular-ima-ads
│ │ │ └── ima-ads.min.js
│ │ ├── videogular-overlay-play
│ │ │ └── overlay-play.min.js
│ │ └── videogular-poster
│ │ └── poster.min.js
│ ├── assets
│ │ ├── animate.css
│ │ │ └── animate.css
│ │ ├── bootstrap-rtl
│ │ │ └── dist
│ │ │ └── css
│ │ │ └── bootstrap-rtl.min.css
│ │ ├── font-awesome
│ │ │ ├── css
│ │ │ │ ├── font-awesome.css
│ │ │ │ └── font-awesome.min.css
│ │ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.svg
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ │ └── simple-line-icons
│ │ ├── css
│ │ │ └── simple-line-icons.css
│ │ └── fonts
│ │ ├── Simple-Line-Icons.eot
│ │ ├── Simple-Line-Icons.svg
│ │ ├── Simple-Line-Icons.ttf
│ │ └── Simple-Line-Icons.woff
│ └── jquery
│ ├── bootstrap
│ │ └── dist
│ │ ├── css
│ │ │ ├── bootstrap.css
│ │ │ ├── bootstrap.css.map
│ │ │ ├── bootstrap.min.css
│ │ │ ├── bootstrap-theme.css
│ │ │ ├── bootstrap-theme.css.map
│ │ │ └── bootstrap-theme.min.css
│ │ ├── fonts
│ │ │ ├── glyphicons-halflings-regular.eot
│ │ │ ├── glyphicons-halflings-regular.svg
│ │ │ ├── glyphicons-halflings-regular.ttf
│ │ │ ├── glyphicons-halflings-regular.woff
│ │ │ └── glyphicons-halflings-regular.woff2
│ │ └── js
│ │ ├── bootstrap.js
│ │ ├── bootstrap.min.js
│ │ └── npm.js
│ ├── bootstrap-daterangepicker
│ │ ├── daterangepicker-bs3.css
│ │ └── daterangepicker.js
│ ├── bootstrap-filestyle
│ │ └── src
│ │ └── bootstrap-filestyle.js
│ ├── bootstrap-slider
│ │ ├── bootstrap-slider.css
│ │ └── bootstrap-slider.js
│ ├── bootstrap-tagsinput
│ │ └── dist
│ │ ├── bootstrap-tagsinput.css
│ │ └── bootstrap-tagsinput.js
│ ├── bootstrap-touchspin
│ │ └── dist
│ │ ├── jquery.bootstrap-touchspin.min.css
│ │ └── jquery.bootstrap-touchspin.min.js
│ ├── bootstrap-wysiwyg
│ │ ├── bootstrap-wysiwyg.js
│ │ └── external
│ │ └── jquery.hotkeys.js
│ ├── bower-jvectormap
│ │ ├── jquery-jvectormap-1.2.2.min.js
│ │ ├── jquery-jvectormap.css
│ │ ├── jquery-jvectormap-us-aea-en.js
│ │ └── jquery-jvectormap-world-mill-en.js
│ ├── chosen
│ │ ├── bootstrap-chosen.css
│ │ ├── chosen.jquery.min.js
│ │ ├── chosen-sprite@2x.png
│ │ └── chosen-sprite.png
│ ├── datatables
│ │ └── media
│ │ └── js
│ │ └── jquery.dataTables.min.js
│ ├── flot
│ │ ├── jquery.flot.js
│ │ ├── jquery.flot.pie.js
│ │ └── jquery.flot.resize.js
│ ├── flot.orderbars
│ │ └── js
│ │ └── jquery.flot.orderBars.js
│ ├── flot-spline
│ │ └── js
│ │ └── jquery.flot.spline.min.js
│ ├── flot.tooltip
│ │ └── js
│ │ └── jquery.flot.tooltip.min.js
│ ├── footable
│ │ ├── css
│ │ │ ├── fonts
│ │ │ │ ├── footable.eot
│ │ │ │ ├── footable.svg
│ │ │ │ ├── footable.ttf
│ │ │ │ └── footable.woff
│ │ │ └── footable.core.css
│ │ ├── dist
│ │ │ └── footable.all.min.js
│ │ └── v3
│ │ ├── css
│ │ │ ├── footable.bootstrap.css
│ │ │ └── footable.bootstrap.min.css
│ │ └── js
│ │ ├── footable.js
│ │ └── footable.min.js
│ ├── fullcalendar
│ │ └── dist
│ │ ├── fullcalendar.css
│ │ ├── fullcalendar.min.js
│ │ └── fullcalendar.theme.css
│ ├── html5sortable
│ │ └── jquery.sortable.js
│ ├── jquery
│ │ └── dist
│ │ └── jquery.js
│ ├── jquery_appear
│ │ └── jquery.appear.js
│ ├── jquery.easy-pie-chart
│ │ └── dist
│ │ └── jquery.easypiechart.fill.js
│ ├── jquery.sparkline
│ │ └── dist
│ │ └── jquery.sparkline.retina.js
│ ├── moment
│ │ └── moment.js
│ ├── nestable
│ │ ├── jquery.nestable.css
│ │ └── jquery.nestable.js
│ ├── plugins
│ │ └── integration
│ │ └── bootstrap
│ │ ├── 3
│ │ │ ├── dataTables.bootstrap.css
│ │ │ ├── dataTables.bootstrap.js
│ │ │ ├── dataTables.bootstrap.min.js
│ │ │ └── index.html
│ │ └── images
│ │ ├── sort_asc_disabled.png
│ │ ├── sort_asc.png
│ │ ├── sort_both.png
│ │ ├── sort_desc_disabled.png
│ │ └── sort_desc.png
│ ├── screenfull
│ │ └── dist
│ │ └── screenfull.min.js
│ └── slimscroll
│ └── jquery.slimscroll.min.js
├── __MACOSX
│ ├── grunt
│ ├── landing
│ │ ├── css
│ │ ├── fonts
│ │ │ └── sourcesanspro
│ │ ├── img
│ │ ├── js
│ │ └── tpl
│ ├── libs
│ │ ├── angular
│ │ │ ├── angular
│ │ │ ├── angular-animate
│ │ │ ├── angular-aria
│ │ │ ├── angular-bootstrap
│ │ │ ├── angular-bootstrap-nav-tree
│ │ │ │ └── dist
│ │ │ ├── angular-cookies
│ │ │ ├── angular-file-upload
│ │ │ ├── angularjs-toaster
│ │ │ ├── angular-material
│ │ │ ├── angular-messages
│ │ │ ├── angular-resource
│ │ │ ├── angular-sanitize
│ │ │ ├── angular-skycons
│ │ │ ├── angular-smart-table
│ │ │ │ └── dist
│ │ │ ├── angular-touch
│ │ │ ├── angular-translate
│ │ │ ├── angular-translate-loader-static-files
│ │ │ ├── angular-translate-storage-cookie
│ │ │ ├── angular-translate-storage-local
│ │ │ ├── angular-ui-calendar
│ │ │ │ └── src
│ │ │ ├── angular-ui-grid
│ │ │ ├── angular-ui-router
│ │ │ │ └── release
│ │ │ ├── angular-ui-select
│ │ │ │ └── dist
│ │ │ ├── angular-ui-utils
│ │ │ ├── angular-xeditable
│ │ │ │ └── dist
│ │ │ │ ├── css
│ │ │ │ └── js
│ │ │ ├── jquery.easy-pie-chart
│ │ │ │ └── dist
│ │ │ ├── ng-grid
│ │ │ │ └── build
│ │ │ ├── ngImgCrop
│ │ │ │ └── compile
│ │ │ │ └── minified
│ │ │ ├── ngstorage
│ │ │ ├── oclazyload
│ │ │ │ └── dist
│ │ │ ├── textAngular
│ │ │ │ └── dist
│ │ │ ├── venturocket-angular-slider
│ │ │ │ └── build
│ │ │ ├── videogular
│ │ │ ├── videogular-buffering
│ │ │ ├── videogular-controls
│ │ │ ├── videogular-ima-ads
│ │ │ ├── videogular-overlay-play
│ │ │ └── videogular-poster
│ │ ├── assets
│ │ │ ├── animate.css
│ │ │ ├── font-awesome
│ │ │ │ ├── css
│ │ │ │ └── fonts
│ │ │ └── simple-line-icons
│ │ │ ├── css
│ │ │ └── fonts
│ │ └── jquery
│ │ ├── bootstrap
│ │ │ └── dist
│ │ │ ├── css
│ │ │ ├── fonts
│ │ │ └── js
│ │ ├── bootstrap-daterangepicker
│ │ ├── bootstrap-filestyle
│ │ │ └── src
│ │ ├── bootstrap-slider
│ │ ├── bootstrap-tagsinput
│ │ │ └── dist
│ │ ├── bootstrap-touchspin
│ │ │ └── dist
│ │ ├── bootstrap-wysiwyg
│ │ │ └── external
│ │ ├── bower-jvectormap
│ │ ├── chosen
│ │ ├── datatables
│ │ │ └── media
│ │ │ └── js
│ │ ├── flot
│ │ ├── flot.orderbars
│ │ │ └── js
│ │ ├── flot-spline
│ │ │ └── js
│ │ ├── flot.tooltip
│ │ │ └── js
│ │ ├── footable
│ │ │ ├── css
│ │ │ │ └── fonts
│ │ │ ├── dist
│ │ │ └── v3
│ │ │ ├── css
│ │ │ └── js
│ │ ├── fullcalendar
│ │ │ └── dist
│ │ ├── html5sortable
│ │ ├── jquery
│ │ │ └── dist
│ │ ├── jquery_appear
│ │ ├── jquery.easy-pie-chart
│ │ │ └── dist
│ │ ├── jquery.sparkline
│ │ │ └── dist
│ │ ├── moment
│ │ ├── nestable
│ │ ├── plugins
│ │ │ └── integration
│ │ │ └── bootstrap
│ │ │ ├── 3
│ │ │ └── images
│ │ ├── screenfull
│ │ │ └── dist
│ │ └── slimscroll
│ ├── src
│ │ ├── api
│ │ ├── css
│ │ │ └── less
│ │ ├── fonts
│ │ │ └── sourcesanspro
│ │ ├── img
│ │ ├── js
│ │ │ ├── app
│ │ │ │ ├── calendar
│ │ │ │ ├── contact
│ │ │ │ ├── map
│ │ │ │ ├── music
│ │ │ │ ├── note
│ │ │ │ ├── todo
│ │ │ │ └── weather
│ │ │ ├── controllers
│ │ │ ├── directives
│ │ │ ├── filters
│ │ │ └── services
│ │ ├── l10n
│ │ ├── psd
│ │ └── tpl
│ │ ├── blocks
│ │ └── material
│ └── swig
│ └── js
├── package.json
├── readme.txt
├── src
│ ├── api
│ │ ├── datatable.json
│ │ ├── groups
│ │ ├── login
│ │ ├── saveUser
│ │ └── signup
│ ├── css
│ │ ├── app.css
│ │ ├── app.rtl.css
│ │ ├── font.css
│ │ ├── less
│ │ │ ├── app.arrow.less
│ │ │ ├── app.butterbar.less
│ │ │ ├── app.buttons.less
│ │ │ ├── app.colors.less
│ │ │ ├── app.components.less
│ │ │ ├── app.item.less
│ │ │ ├── app.layout.boxed.less
│ │ │ ├── app.layout.less
│ │ │ ├── app.less
│ │ │ ├── app.mixins.less
│ │ │ ├── app.nav.dock.less
│ │ │ ├── app.nav.less
│ │ │ ├── app.nav.offscreen.less
│ │ │ ├── app.ng.less
│ │ │ ├── app.plugin.less
│ │ │ ├── app.reset.less
│ │ │ ├── app.rtl.less
│ │ │ ├── app.utilities.less
│ │ │ ├── app.variables.less
│ │ │ ├── app.widgets.less
│ │ │ ├── md.base.less
│ │ │ ├── md.btn.less
│ │ │ ├── md.card.less
│ │ │ ├── md.check.less
│ │ │ ├── md.color.less
│ │ │ ├── md.icon.less
│ │ │ ├── md.input.less
│ │ │ ├── md.layout.less
│ │ │ ├── md.less
│ │ │ ├── md.list.less
│ │ │ ├── md.switch.less
│ │ │ ├── md.variables.less
│ │ │ └── md.whiteframe.less
│ │ ├── material-design-icons.css
│ │ └── md.css
│ ├── fonts
│ │ ├── glyphicons-halflings-regular.eot
│ │ ├── glyphicons-halflings-regular.svg
│ │ ├── glyphicons-halflings-regular.ttf
│ │ ├── glyphicons-halflings-regular.woff
│ │ ├── glyphicons-halflings-regular.woff2
│ │ ├── Material-Design-Icons.eot
│ │ ├── Material-Design-Icons.svg
│ │ ├── Material-Design-Icons.ttf
│ │ ├── Material-Design-Icons.woff
│ │ └── sourcesanspro
│ │ ├── sourcesanspro-bold.woff
│ │ ├── sourcesanspro-light.woff
│ │ └── sourcesanspro.woff
│ ├── img
│ │ ├── a0.jpg
│ │ ├── a10.jpg
│ │ ├── a1.jpg
│ │ ├── a2.jpg
│ │ ├── a3.jpg
│ │ ├── a4.jpg
│ │ ├── a5.jpg
│ │ ├── a6.jpg
│ │ ├── a7.jpg
│ │ ├── a8.jpg
│ │ ├── a9.jpg
│ │ ├── b0.jpg
│ │ ├── b10.jpg
│ │ ├── b11.jpg
│ │ ├── b12.jpg
│ │ ├── b13.jpg
│ │ ├── b14.jpg
│ │ ├── b15.jpg
│ │ ├── b16.jpg
│ │ ├── b17.jpg
│ │ ├── b18.jpg
│ │ ├── b19.jpg
│ │ ├── b1.jpg
│ │ ├── b20.jpg
│ │ ├── b2.jpg
│ │ ├── b3.jpg
│ │ ├── b4.jpg
│ │ ├── b5.jpg
│ │ ├── b6.jpg
│ │ ├── b7.jpg
│ │ ├── b8.jpg
│ │ ├── b9.jpg
│ │ ├── bg.jpg
│ │ ├── c0.jpg
│ │ ├── c1.jpg
│ │ ├── c2.jpg
│ │ ├── c3.jpg
│ │ ├── c4.jpg
│ │ ├── c5.jpg
│ │ ├── c6.jpg
│ │ ├── c7.jpg
│ │ ├── c8.jpg
│ │ ├── c9.jpg
│ │ ├── logo.png
│ │ └── p0.jpg
│ ├── index.html
│ ├── index.rtl.html
│ ├── js
│ │ ├── app
│ │ │ ├── calendar
│ │ │ │ └── calendar.js
│ │ │ ├── contact
│ │ │ │ ├── contact.js
│ │ │ │ └── contacts.json
│ │ │ │ ├── mail.js
│ │ │ │ ├── mail-service.js
│ │ │ │ └── mails.json
│ │ │ ├── map
│ │ │ │ ├── load-google-maps.js
│ │ │ │ ├── map.js
│ │ │ │ └── ui-map.js
│ │ │ ├── music
│ │ │ │ ├── ctrl.js
│ │ │ │ ├── theme.css
│ │ │ │ └── videogular.css
│ │ │ ├── note
│ │ │ │ ├── note.js
│ │ │ │ └── notes.json
│ │ │ ├── todo
│ │ │ │ └── todo.js
│ │ │ └── weather
│ │ │ ├── angular-skycons.js
│ │ │ ├── ctrl.js
│ │ │ └── skycons.js
│ │ ├── app.js
│ │ ├── app.material.js
│ │ ├── config.js
│ │ ├── config.lazyload.js
│ │ ├── config.router.js
│ │ ├── controllers
│ │ │ ├── bootstrap.js
│ │ │ ├── chart.js
│ │ │ ├── editor.js
│ │ │ ├── file-upload.js
│ │ │ ├── form.js
│ │ │ ├── grid.js
│ │ │ ├── imgcrop.js
│ │ │ ├── largeLoad.json
│ │ │ ├── material.js
│ │ │ ├── scroll.js
│ │ │ ├── select.js
│ │ │ ├── signin.js
│ │ │ ├── signup.js
│ │ │ ├── slider.js
│ │ │ ├── tab.js
│ │ │ ├── table.js
│ │ │ ├── toaster.js
│ │ │ ├── tree.js
│ │ │ ├── uigrid.js
│ │ │ ├── upload.php
│ │ │ ├── uploads
│ │ │ │ └── a6.jpg
│ │ │ ├── vectormap.js
│ │ │ └── xeditable.js
│ │ ├── directives
│ │ │ ├── setnganimate.js
│ │ │ ├── ui-butterbar.js
│ │ │ ├── ui-focus.js
│ │ │ ├── ui-fullscreen.js
│ │ │ ├── ui-jq.js
│ │ │ ├── ui-module.js
│ │ │ ├── ui-nav.js
│ │ │ ├── ui-scroll.js
│ │ │ ├── ui-shift.js
│ │ │ └── ui-toggleclass.js
│ │ ├── filters
│ │ │ └── fromNow.js
│ │ ├── main.js
│ │ └── services
│ │ └── ui-load.js
│ ├── l10n
│ │ ├── de_DE.js
│ │ ├── en.js
│ │ └── it_IT.js
│ ├── material.html
│ ├── psd
│ │ ├── ui.png
│ │ └── ui.zip
│ └── tpl
│ ├── app_calendar.html
│ ├── app_dashboard_v1.html
│ ├── app_dashboard_v2.html
│ ├── app_dashboard_v3.html
│ ├── app.html
│ ├── apps_contact.html
│ ├── apps_note.html
│ ├── apps_note_material.html
│ ├── apps_todo.html
│ ├── apps_weather.html
│ ├── blank.html
│ ├── blocks
│ │ ├── aside.html
│ │ ├── aside.music.html
│ │ ├── aside.right.html
│ │ ├── header.html
│ │ ├── header.music.html
│ │ ├── material.aside.html
│ │ ├── material.header.html
│ │ ├── material.layout.html
│ │ ├── material.nav.html
│ │ ├── nav.html
│ │ ├── page_footer.html
│ │ └── settings.html
│ ├── docs.html
│ ├── form_editor.html
│ ├── form_elements.html
│ ├── form_fileupload.html
│ ├── form_imagecrop.html
│ ├── form_select.html
│ ├── form_slider.html
│ ├── form_validation.html
│ ├── form_wizard.html
│ ├── form_xeditable.html
│ ├── layout_app.html
│ ├── layout_footer_fullwidth.html
│ ├── layout_footer_mobile.html
│ ├── layout_fullwidth.html
│ ├── layout.html
│ ├── layout_mobile.html
│ ├── mail.detail.html
│ ├── mail.html
│ ├── mail.list.html
│ ├── mail.new.html
│ ├── material
│ │ ├── button.html
│ │ ├── card.html
│ │ ├── color.html
│ │ ├── dialog.tmpl.html
│ │ ├── form.html
│ │ ├── icon.html
│ │ ├── list.html
│ │ ├── ngmaterial.html
│ │ └── toast.tmpl.html
│ ├── modal.form.html
│ ├── modal.html
│ ├── music.detail.html
│ ├── music.genres.html
│ ├── music.home.html
│ ├── music.html
│ ├── music.mtv.detail.html
│ ├── music.mtv.html
│ ├── music.player.html
│ ├── music.playlist.html
│ ├── page_404.html
│ ├── page_forgotpwd.html
│ ├── page_invoice.html
│ ├── page_lockme.html
│ ├── page_post.html
│ ├── page_price.html
│ ├── page_profile.html
│ ├── page_search.html
│ ├── page_signin.html
│ ├── page_signup.html
│ ├── table_datatable.html
│ ├── table_editable.html
│ ├── table_footable.html
│ ├── table_grid.html
│ ├── table_smart.html
│ ├── table_static.html
│ ├── table_uigrid.html
│ ├── ui_bootstrap.html
│ ├── ui_buttons.html
│ ├── ui_chart.html
│ ├── ui_googlemap.html
│ ├── ui_grid.html
│ ├── ui_icons.html
│ ├── ui_jvectormap.html
│ ├── ui_portlet.html
│ ├── ui_scroll.html
│ ├── ui_sortable.html
│ ├── ui_timeline.html
│ ├── ui_toaster.html
│ ├── ui_tree.html
│ └── ui_widgets.html
├── swig
│ ├── blocks
│ │ ├── aside.html
│ │ ├── base.html
│ │ ├── footer.html
│ │ ├── header.html
│ │ └── layout.html
│ ├── dashboard.swig
│ ├── form_elements.swig
│ ├── form_element.swig
│ ├── index.swig
│ ├── js
│ │ ├── ui-client.js
│ │ ├── ui-jp.config.js
│ │ ├── ui-jp.js
│ │ ├── ui-load.js
│ │ ├── ui-nav.js
│ │ └── ui-toggle.js
│ ├── layout_app.swig
│ ├── layout_boxed.swig
│ ├── layout_fullwidth.swig
│ ├── mail.swig
│ ├── page_404.swig
│ ├── page_forgotpwd.swig
│ ├── page_invoice.swig
│ ├── page_lockme.swig
│ ├── page_post.swig
│ ├── page_price.swig
│ ├── page_profile.swig
│ ├── page_search.swig
│ ├── page_signin.swig
│ ├── page_signup.swig
│ ├── table_datatable.swig
│ ├── table_footable.swig
│ ├── table_static.swig
│ ├── ui_button.swig
│ ├── ui_chart.swig
│ ├── ui_grid.swig
│ ├── ui_icon.swig
│ ├── ui_jvectormap.swig
│ ├── ui_portlet.swig
│ ├── ui_sortable.swig
│ ├── ui_timeline.swig
│ └── ui_widget.swig
└── update.txt
322 directories, 611 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论