Skip to content

Commit 88c6ab5

Browse files
committedJun 11, 2015
fix starter.html
1 parent f8b63fd commit 88c6ab5

File tree

1 file changed

+11
-29
lines changed

1 file changed

+11
-29
lines changed
 

‎starter.html

+11-29
Original file line numberDiff line numberDiff line change
@@ -9,26 +9,11 @@
99
<title>AdminLTE 2 | Dashboard</title>
1010
<!-- Tell the browser to be responsive to screen width -->
1111
<meta content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no' name='viewport'>
12-
<!-- Bootstrap 3.3.4 -->
13-
<link href="bootstrap/css/bootstrap.min.css" rel="stylesheet" type="text/css" />
14-
<!-- Font Awesome Icons -->
15-
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css" rel="stylesheet" type="text/css" />
16-
<!-- Ionicons -->
17-
<link href="https://code.ionicframework.com/ionicons/2.0.1/css/ionicons.min.css" rel="stylesheet" type="text/css" />
18-
<!-- Theme style -->
19-
<link href="dist/css/AdminLTE.min.css" rel="stylesheet" type="text/css" />
20-
<!-- AdminLTE Skins. We have chosen the skin-blue for this starter
21-
page. However, you can choose any other skin. Make sure you
22-
apply the skin class to the body tag so the changes take effect.
23-
-->
24-
<link href="dist/css/skins/skin-blue.min.css" rel="stylesheet" type="text/css" />
2512

26-
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
27-
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
28-
<!--[if lt IE 9]>
29-
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
30-
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
31-
<![endif]-->
13+
<link rel="stylesheet" href="/bower_components/font-awesome/css/font-awesome.css" />
14+
<link rel="stylesheet" href="/bower_components/ionicons/css/ionicons.css" />
15+
<link rel="stylesheet" href="/dist/styles/main.css">
16+
3217
</head>
3318
<!--
3419
BODY TAG OPTIONS:
@@ -89,7 +74,7 @@
8974
<a href="#">
9075
<div class="pull-left">
9176
<!-- User Image -->
92-
<img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image"/>
77+
<img src="/images/user2-160x160.jpg" class="img-circle" alt="User Image"/>
9378
</div>
9479
<!-- Message title and timestamp -->
9580
<h4>
@@ -168,14 +153,14 @@ <h3>
168153
<!-- Menu Toggle Button -->
169154
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
170155
<!-- The user image in the navbar-->
171-
<img src="dist/img/user2-160x160.jpg" class="user-image" alt="User Image"/>
156+
<img src="/images/user2-160x160.jpg" class="user-image" alt="User Image"/>
172157
<!-- hidden-xs hides the username on small devices so only the image appears. -->
173158
<span class="hidden-xs">Alexander Pierce</span>
174159
</a>
175160
<ul class="dropdown-menu">
176161
<!-- The user image in the menu -->
177162
<li class="user-header">
178-
<img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image" />
163+
<img src="/images/user2-160x160.jpg" class="img-circle" alt="User Image" />
179164
<p>
180165
Alexander Pierce - Web Developer
181166
<small>Member since Nov. 2012</small>
@@ -221,7 +206,7 @@ <h3>
221206
<!-- Sidebar user panel (optional) -->
222207
<div class="user-panel">
223208
<div class="pull-left image">
224-
<img src="dist/img/user2-160x160.jpg" class="img-circle" alt="User Image" />
209+
<img src="/images/user2-160x160.jpg" class="img-circle" alt="User Image" />
225210
</div>
226211
<div class="pull-left info">
227212
<p>Alexander Pierce</p>
@@ -357,12 +342,9 @@ <h3 class="control-sidebar-heading">General Settings</h3>
357342

358343
<!-- REQUIRED JS SCRIPTS -->
359344

360-
<!-- jQuery 2.1.4 -->
361-
<script src="plugins/jQuery/jQuery-2.1.4.min.js"></script>
362-
<!-- Bootstrap 3.3.2 JS -->
363-
<script src="bootstrap/js/bootstrap.min.js" type="text/javascript"></script>
364-
<!-- AdminLTE App -->
365-
<script src="dist/js/app.min.js" type="text/javascript"></script>
345+
<script src="/bower_components/jquery/dist/jquery.js"></script>
346+
<script src="/bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js"></script>
347+
<script src="/javascripts/app.js" type="text/javascript"></script>
366348

367349
<!-- Optionally, you can add Slimscroll and FastClick plugins.
368350
Both of these plugins are recommended to enhance the

0 commit comments

Comments
 (0)
Please sign in to comment.