mirror of https://github.com/akveo/blur-admin
feat(blurPanel): refactor panels
parent
8493dfc994
commit
0616501eaf
|
@ -0,0 +1,7 @@
|
|||
<div class="panel panel-danger">
|
||||
<div class="panel-body">
|
||||
<div class="panel-content">
|
||||
A Basic Panel
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -42,7 +42,8 @@
|
|||
'/maps/gmap': 'Google Map',
|
||||
'/maps/leaflet': 'Leaflet Map',
|
||||
'/maps/line': 'Line Map',
|
||||
'/maps/bubble': 'Bubble Map'
|
||||
'/maps/bubble': 'Bubble Map',
|
||||
'/panels': 'Panels'
|
||||
};
|
||||
|
||||
$scope.$watch(function () {
|
||||
|
|
|
@ -104,6 +104,10 @@
|
|||
{
|
||||
title: 'Sliders',
|
||||
root: '#/slider'
|
||||
},
|
||||
{
|
||||
title: 'Panels',
|
||||
root: '#/panels'
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Blur Admin</title>
|
||||
|
||||
<link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
|
||||
<link href='http://fonts.googleapis.com/css?family=Lato:100,200,300,400,500,600,700,800,900' rel='stylesheet' type='text/css'>
|
||||
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="img/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="96x96" href="img/favicon-96x96.png">
|
||||
|
|
Loading…
Reference in New Issue