Made all logo links consistent

pull/229/merge
Abdullah Almsaeed 2015-02-04 17:12:18 -05:00
parent 64f0082d8a
commit 19c0faaca0
30 changed files with 82 additions and 203 deletions

View File

@ -2,31 +2,25 @@
* Page: Lock Screen * Page: Lock Screen
* ----------------- * -----------------
*/ */
/* ADD THIS CLASS TO THE <HTML> TAG */ /* ADD THIS CLASS TO THE <BODY> TAG */
.lockscreen { .lockscreen {
background: url(../img/blur-background09.jpg) repeat center center fixed; background: @gray;//url(../img/boxed-bg.png) repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/* Remove the background from the body element */
.lockscreen > body {
background: transparent;
} }
/* We will put the dynamically generated digital clock here */ /* We will put the dynamically generated digital clock here */
.lockscreen .headline { .lockscreen-logo {
color: #fff; font-size: 30px;
text-shadow: 1px 3px 5px rgba(0,0,0,0.5); text-align: center;
font-weight: 300; margin-bottom: 25px;
-webkit-font-smoothing: antialiased !important; a {
opacity: 0.8; color: #444;
margin: 10px 0 30px 0; }
font-size: 90px; }
.lockscreen-wrapper {
max-width: 400px;
margin: 0 auto;
margin-top: 10%;
} }
@media (max-width: @screen-xs-max) { @media (max-width: @screen-xs-max) {
.lockscreen .headline { .lockscreen .headline {
font-size: 60px; font-size: 60px;
@ -38,7 +32,6 @@
.lockscreen .lockscreen-name { .lockscreen .lockscreen-name {
text-align: center; text-align: center;
font-weight: 600; font-weight: 600;
font-size: 16px;
} }
/* Will contain the image and the sign in form */ /* Will contain the image and the sign in form */
@ -53,7 +46,7 @@
} }
/* User image */ /* User image */
.lockscreen-item > .lockscreen-image { .lockscreen-image {
position: absolute; position: absolute;
left: -10px; left: -10px;
top: -30px; top: -30px;
@ -69,7 +62,7 @@
} }
/* Contains the password input and the login button */ /* Contains the password input and the login button */
.lockscreen-item > .lockscreen-credentials { .lockscreen-credentials {
margin-left: 80px; margin-left: 80px;
input { input {
border: 0 !important; border: 0 !important;

43
dist/css/AdminLTE.css vendored
View File

@ -2554,27 +2554,23 @@ table.text-center th {
* Page: Lock Screen * Page: Lock Screen
* ----------------- * -----------------
*/ */
/* ADD THIS CLASS TO THE <HTML> TAG */ /* ADD THIS CLASS TO THE <BODY> TAG */
.lockscreen { .lockscreen {
background: url(../img/blur-background09.jpg) repeat center center fixed; background: #d2d6de;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
/* Remove the background from the body element */
.lockscreen > body {
background: transparent;
} }
/* We will put the dynamically generated digital clock here */ /* We will put the dynamically generated digital clock here */
.lockscreen .headline { .lockscreen-logo {
color: #fff; font-size: 30px;
text-shadow: 1px 3px 5px rgba(0, 0, 0, 0.5); text-align: center;
font-weight: 300; margin-bottom: 25px;
-webkit-font-smoothing: antialiased !important; }
opacity: 0.8; .lockscreen-logo a {
margin: 10px 0 30px 0; color: #444;
font-size: 90px; }
.lockscreen-wrapper {
max-width: 400px;
margin: 0 auto;
margin-top: 10%;
} }
@media (max-width: 767px) { @media (max-width: 767px) {
.lockscreen .headline { .lockscreen .headline {
@ -2586,7 +2582,6 @@ table.text-center th {
.lockscreen .lockscreen-name { .lockscreen .lockscreen-name {
text-align: center; text-align: center;
font-weight: 600; font-weight: 600;
font-size: 16px;
} }
/* Will contain the image and the sign in form */ /* Will contain the image and the sign in form */
.lockscreen-item { .lockscreen-item {
@ -2606,7 +2601,7 @@ table.text-center th {
clear: both; clear: both;
} }
/* User image */ /* User image */
.lockscreen-item > .lockscreen-image { .lockscreen-image {
position: absolute; position: absolute;
left: -10px; left: -10px;
top: -30px; top: -30px;
@ -2615,19 +2610,19 @@ table.text-center th {
border-radius: 50%; border-radius: 50%;
z-index: 10; z-index: 10;
} }
.lockscreen-item > .lockscreen-image > img { .lockscreen-image > img {
width: 70px; width: 70px;
height: 70px; height: 70px;
border-radius: 50%; border-radius: 50%;
} }
/* Contains the password input and the login button */ /* Contains the password input and the login button */
.lockscreen-item > .lockscreen-credentials { .lockscreen-credentials {
margin-left: 80px; margin-left: 80px;
} }
.lockscreen-item > .lockscreen-credentials input { .lockscreen-credentials input {
border: 0 !important; border: 0 !important;
} }
.lockscreen-item > .lockscreen-credentials .btn { .lockscreen-credentials .btn {
background-color: #fff; background-color: #fff;
border: 0; border: 0;
} }

File diff suppressed because one or more lines are too long

13
dist/js/demo.js vendored
View File

@ -1,3 +1,4 @@
var my_skins = ["skin-blue", "skin-black", "skin-red", "skin-yellow", "skin-purple", "skin-green"];
$(function () { $(function () {
/* For demo purposes */ /* For demo purposes */
var demo = $("<div />").css({ var demo = $("<div />").css({
@ -130,10 +131,9 @@ function change_layout(cls) {
$("body").toggleClass(cls); $("body").toggleClass(cls);
$.AdminLTE.layout.fixSidebar(); $.AdminLTE.layout.fixSidebar();
} }
function change_skin(cls) { function change_skin(cls) {
var skins = ["skin-blue", "skin-black", "skin-red", "skin-yellow", "skin-purple", "skin-green"]; $.each(my_skins, function (i) {
$.each(skins, function (i) { $("body").removeClass(my_skins[i]);
$("body").removeClass(skins[i]);
}); });
$("body").addClass(cls); $("body").addClass(cls);
@ -156,6 +156,7 @@ function get(name) {
} }
function setup() { function setup() {
if (get('skin')) var tmp = get('skin');
change_skin(get('skin')); if (tmp && $.inArray(tmp, my_skins))
change_skin(tmp);
} }

View File

@ -142,7 +142,7 @@
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<!-- Logo --> <!-- Logo -->
<a href="../index2.html" class="logo">AdminLTE</a> <a href="../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->
@ -448,7 +448,7 @@ AdminLTE/
<span class="eg">Main Header Example</span> <span class="eg">Main Header Example</span>
<header class="main-header" style="position: relative;"> <header class="main-header" style="position: relative;">
<!-- Logo --> <!-- Logo -->
<a href="index2.html" class="logo">AdminLTE</a> <a href="index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar" role="navigation" style="border: 0;"> <nav class="navbar" role="navigation" style="border: 0;">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->
@ -728,7 +728,7 @@ AdminLTE/
<span class="eg">Top Nav Example</span> <span class="eg">Top Nav Example</span>
<header class="main-header"> <header class="main-header">
<!-- Logo --> <!-- Logo -->
<a href="../index2.html" class="logo">AdminLTE</a> <a href="../index2.html" class="logo"><b>Admin</b>LTE</a>
<nav class="navbar navbar-static-top"> <nav class="navbar navbar-static-top">
<div class="navbar-header"> <div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">

View File

@ -40,7 +40,7 @@
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<!-- Logo --> <!-- Logo -->
<a href="index2.html" class="logo">AdminLTE</a> <a href="index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -32,7 +32,7 @@
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<!-- Logo --> <!-- Logo -->
<a href="index2.html" class="logo">AdminLTE</a> <a href="index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -42,10 +42,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -71,10 +71,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -39,10 +39,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -31,10 +31,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -28,10 +28,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../index2.html" class="logo"> <a href="../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -27,10 +27,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -26,10 +26,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class .icon to your logo image or logo icon to add some margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -1,5 +1,5 @@
<!DOCTYPE html> <!DOCTYPE html>
<html class="lockscreen"> <html>
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>AdminLTE 2 | Lockscreen</title> <title>AdminLTE 2 | Lockscreen</title>
@ -16,13 +16,12 @@
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script> <script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]--> <![endif]-->
</head> </head>
<body> <body class="lockscreen">
<!-- Automatic element centering using js --> <!-- Automatic element centering -->
<div class="center"> <div class="lockscreen-wrapper">
<div class="headline text-center" id="time"> <div class="lockscreen-logo">
<!-- Time auto generated by js --> <a href="../../index2.html"><b>Admin</b>LTE</a>
</div><!-- /.headline --> </div>
<!-- User name --> <!-- User name -->
<div class="lockscreen-name">John Doe</div> <div class="lockscreen-name">John Doe</div>
@ -30,12 +29,12 @@
<div class="lockscreen-item"> <div class="lockscreen-item">
<!-- lockscreen image --> <!-- lockscreen image -->
<div class="lockscreen-image"> <div class="lockscreen-image">
<img src="../../dist/img/avatar5.png" alt="user image"/> <img src="../../dist/img/user1-128x128.jpg" alt="user image"/>
</div> </div>
<!-- /.lockscreen-image --> <!-- /.lockscreen-image -->
<!-- lockscreen credentials (contains the form) --> <!-- lockscreen credentials (contains the form) -->
<div class="lockscreen-credentials"> <div class="lockscreen-credentials">
<div class="input-group"> <div class="input-group">
<input type="password" class="form-control" placeholder="password" /> <input type="password" class="form-control" placeholder="password" />
@ -49,7 +48,7 @@
<div class="lockscreen-link"> <div class="lockscreen-link">
<a href="login.html">Or sign in as a different user</a> <a href="login.html">Or sign in as a different user</a>
</div> </div>
</div><!-- /.center --> </div><!-- /.center -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> <script src="http://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
@ -57,58 +56,12 @@
<!-- page script --> <!-- page script -->
<script type="text/javascript"> <script type="text/javascript">
$(function () { $(function () {
startTime(); //$(".center").center();
$(".center").center();
$(window).resize(function () { $(window).resize(function () {
$(".center").center(); $(".center").center();
}); });
}); });
/* */
function startTime()
{
var today = new Date();
var h = today.getHours();
var m = today.getMinutes();
var s = today.getSeconds();
// add a zero in front of numbers<10
m = checkTime(m);
s = checkTime(s);
//Check for PM and AM
var day_or_night = (h > 11) ? "PM" : "AM";
//Convert to 12 hours system
if (h > 12)
h -= 12;
//Add time to the headline and update every 500 milliseconds
$('#time').html(h + ":" + m + ":" + s + " " + day_or_night);
setTimeout(function () {
startTime()
}, 500);
}
function checkTime(i)
{
if (i < 10)
{
i = "0" + i;
}
return i;
}
/* CENTER ELEMENTS IN THE SCREEN */
jQuery.fn.center = function () {
this.css("position", "absolute");
this.css("top", Math.max(0, (($(window).height() - $(this).outerHeight()) / 2) +
$(window).scrollTop()) - 30 + "px");
this.css("left", Math.max(0, (($(window).width() - $(this).outerWidth()) / 2) +
$(window).scrollLeft()) + "px");
return this;
}
</script> </script>
</body> </body>
</html> </html>

View File

@ -35,10 +35,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -27,10 +27,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -26,7 +26,7 @@
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<!-- Logo --> <!-- Logo -->
<a href="../../index2.html" class="logo">AdminLTE</a> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<nav class="navbar navbar-static-top"> <nav class="navbar navbar-static-top">
<div class="navbar-header"> <div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1"> <button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">

View File

@ -29,10 +29,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../index2.html" class="logo"> <a href="../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -27,10 +27,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../../index2.html" class="logo"> <a href="../../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->

View File

@ -25,10 +25,7 @@
<div class="wrapper"> <div class="wrapper">
<!-- header logo: style can be found in header.less --> <!-- header logo: style can be found in header.less -->
<header class="main-header"> <header class="main-header">
<a href="../index2.html" class="logo"> <a href="../index2.html" class="logo"><b>Admin</b>LTE</a>
<!-- Add the class icon to your logo image or logo icon to add the margining -->
AdminLTE
</a>
<!-- Header Navbar: style can be found in header.less --> <!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation"> <nav class="navbar navbar-static-top" role="navigation">
<!-- Sidebar toggle button--> <!-- Sidebar toggle button-->