-
Notifications
You must be signed in to change notification settings - Fork 3
/
alerts.html
88 lines (83 loc) · 3.84 KB
/
alerts.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html>
<head>
<title>LifeItUp Web Admin</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<!-- Stylesheets files -->
<link rel="stylesheet/less" type="text/css" href="assets/style/lifeitup.less" />
<!-- JS files -->
<script type="text/javascript" src="assets/js/less.js"></script>
<script type="text/javascript" src="assets/js/jquery.js"></script>
<script type="text/javascript" src="assets/js/lifeitup_layout.js"></script>
<script type="text/javascript" src="assets/js/modernizr.js"></script>
<script type="text/javascript" src="assets/js/lifeitup_layout-html-include.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- HEADER -->
<header>
</header>
<!-- BODY -->
<div class="container-fluid">
<!-- MENU: the content of this tag (aside.html) is being loaded with Jquery from the document 'layout-html-include.js' -->
<aside>
</aside>
<!-- SECTION -->
<section>
<!-- Alert -->
<div class="alert alert-info alert-dismissible fade in text-left">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<div class="alert-message">
<div class="pull-left alert-icon">
<i class="fa fa-info-circle fa-3x"></i>
</div>
Let me present you the new <strong>Life II UP Admin Panel</strong>. An open source front-end UI created using Bootstrap 3.0, Jquery, outstanding well organized LESS and HTML5.
</div>
</div>
<!-- Alert -->
<!-- Alert -->
<div class="alert alert-warning alert-dismissible fade in text-left">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<div class="alert-message">
<div class="pull-left alert-icon">
<i class="fa fa-warning"></i>
</div>
Let me present you the new <strong>Life II UP Admin Panel</strong>. An open source front-end UI created using Bootstrap 3.0, Jquery, outstanding well organized LESS and HTML5.
</div>
</div>
<!-- Alert -->
<!-- Alert -->
<div class="alert alert-success alert-dismissible fade in text-left">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<div class="alert-message">
<div class="pull-left alert-icon">
<i class="fa fa-check-circle"></i>
</div>
Let me present you the new <strong>Life II UP Admin Panel</strong>. An open source front-end UI created using Bootstrap 3.0, Jquery, outstanding well organized LESS and HTML5.
</div>
</div>
<!-- Alert -->
<!-- Alert -->
<div class="alert alert-danger alert-dismissible fade in text-left">
<button type="button" class="close" data-dismiss="alert"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<div class="alert-message">
<div class="pull-left alert-icon">
<i class="fa fa-exclamation-circle"></i>
</div>
Let me present you the new <strong>Life II UP Admin Panel</strong>. An open source front-end UI created using Bootstrap 3.0, Jquery, outstanding well organized LESS and HTML5.
</div>
</div>
<!-- Alert -->
</section>
</div>
<footer>
</footer>
</body>
</html>