-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.html
127 lines (118 loc) · 4.91 KB
/
base.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=""> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang=""> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang=""> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang=""> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Business Template</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<link rel="stylesheet" href="css/vendor.min.css">
<link rel="stylesheet" href="css/base.css">
<script src="js/modernizr.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div id="wrapper">
<div id="content">
<!-- HEADER -->
<header id="header">
<div class="container">
<!-- mob-nav -->
<div class="nav-mob-header">
<p class='nav-title-block'><i class="fa fa-2x fa-bars menu"></i><a href="#">Page title</a></p>
</div><!-- /.nav-mob-header-->
<!-- mob-nav End-->
<div class="row b-header-top">
<div class="col-md-4 col-sm-12 b-logo">
<h1 class="logo-heading"><a href="#">Business</a> <span class="subheader">company</span></h1>
</div><!-- /.col-md-4 col-sm-4 b-logo -->
<div class="col-md-8 col-sm-12 b-header-phone text-right">
<p class="phone-number"><a href="#">800-2345-6789</a></p>
<small>One of our representatives will happily contact you within 24 hours. For urgent needs call us at</small>
</div><!-- /.col-md-8 col-sm-8 b-header-phone text-right -->
</div><!-- /.row b-header-top -->
</div><!-- /.container -->
<!-- Navigation -->
<nav class="nav-mob">
<div class="container menu-block">
<p class="text-right close-nav">×</p>
<ul class="drop-menu">
<li class="active"><a href="#">Home</a></li>
<li class="drop-nav-ul">
<span class="inner-level-link"></span>
<a href="http://localhost:8080/404.html">About</a>
<ul class="drop-first">
<li><p class="nav-back">About</p></li>
<li><a href="http://localhost:8080/404.html">Lorem ipsum dolor</a></li>
<li><a href="http://localhost:8080/404.html">Conse ctetur adipisicing</a></li>
<li class="drop-nav-ul">
<span class="inner-level-link"></span>
<a href="http://localhost:8080/404.html">System</a>
<ul>
<li><p class="nav-back">System</p></li>
<li><a href="http://localhost:8080/404.html">link1</a></li>
<li><a href="http://localhost:8080/404.html">link2</a></li>
<li><a href="http://localhost:8080/404.html">link3</a></li>
</ul>
</li>
<li><a href="#">link4</a></li>
</ul><!-- /.drop-nav -->
</li>
<li class="drop-nav-ul">
<span class="inner-level-link"></span>
<a href="http://localhost:8080/404.html">Services</a>
<ul class="drop-first">
<li><p class="nav-back">Services</p></li>
<li><a href="#">link1</a></li>
<li class="drop-nav-ul">
<span class="inner-level-link"></span>
<a href="#">link2</a>
<ul>
<li><p class="nav-back">link2</p></li>
<li><a href="#">link1</a></li>
<li><a href="#">link2</a></li>
<li class="drop-nav-ul">
<span class="inner-level-link"></span>
<a href="http://localhost:8080/404.html">link3</a>
<ul>
<li><p class="nav-back">link3</p></li>
<li><a href="http://localhost:8080/404.html">link1</a></li>
<li><a href="#">link2</a></li>
<li><a href="#">link3</a></li>
</ul>
</li>
</ul>
</li>
<li><a href="#">link3</a></li>
</ul>
</li>
<li><a href="http://localhost:8080/404.html">FAQS</a></li>
<li><a href="http://localhost:8080/404.html">Contacts</a></li>
</ul><!-- /.drop-menu -->
</div>
<!-- /.container -->
</nav><!-- /.nav-mob -->
<!-- Navigation End-->
</header><!-- /#header -->
<!-- HEADER END-->
<main class="content">
</main><!-- /.content -->
</div><!-- /#content -->
<footer id="footer">
<div class="container">
<p class="copyright">Business Company © 2015. Privacy Policy</p>
</div><!-- /.container -->
</footer><!-- /#footer -->
</div><!-- /#wrapper -->
<!-- SCRIPTS -->
<script src="js/vendor.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>