-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
198 lines (151 loc) · 6.51 KB
/
footer.php
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<footer id="footer">
<div class="container">
<div class="col-md-3 col-sm-6">
<h4>About us</h4>
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>
<hr>
<h4>Join our monthly newsletter</h4>
<form>
<div class="input-group">
<input type="text" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="button"><i class="fa fa-send"></i></button>
</span>
</div>
<!-- /input-group -->
</form>
<hr class="hidden-md hidden-lg hidden-sm">
</div>
<!-- /.col-md-3 -->
<div class="col-md-3 col-sm-6">
<h4>Blog</h4>
<div class="blog-entries">
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="#">
<img class="img-responsive" src="assets/img/detailsquare.jpg" alt="">
</a>
</div>
<div class="name same-height-always">
<h5><a href="#">Blog post name</a></h5>
</div>
</div>
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="#">
<img class="img-responsive" src="assets/img/detailsquare.jpg" alt="">
</a>
</div>
<div class="name same-height-always">
<h5><a href="#">Blog post name</a></h5>
</div>
</div>
<div class="item same-height-row clearfix">
<div class="image same-height-always">
<a href="#">
<img class="img-responsive" src="assets/img/detailsquare.jpg" alt="">
</a>
</div>
<div class="name same-height-always">
<h5><a href="#">Very very long blog post name</a></h5>
</div>
</div>
</div>
<hr class="hidden-md hidden-lg">
</div>
<!-- /.col-md-3 -->
<div class="col-md-3 col-sm-6">
<h4>Contact</h4>
<p><strong>Universal Ltd.</strong>
<br>13/25 New Avenue
<br>Newtown upon River
<br>45Y 73J
<br>England
<br>
<strong>Great Britain</strong>
</p>
<a href="contact.html" class="btn btn-small btn-template-main">Go to contact page</a>
<hr class="hidden-md hidden-lg hidden-sm">
</div>
<!-- /.col-md-3 -->
<div class="col-md-3 col-sm-6">
<h4>Photostream</h4>
<div class="photostream">
<div>
<a href="#">
<img src="assets/img/detailsquare.jpg" class="img-responsive" alt="#">
</a>
</div>
<div>
<a href="#">
<img src="assets/img/detailsquare2.jpg" class="img-responsive" alt="#">
</a>
</div>
<div>
<a href="#">
<img src="assets/img/detailsquare3.jpg" class="img-responsive" alt="#">
</a>
</div>
<div>
<a href="#">
<img src="assets/img/detailsquare3.jpg" class="img-responsive" alt="#">
</a>
</div>
<div>
<a href="#">
<img src="assets/img/detailsquare2.jpg" class="img-responsive" alt="#">
</a>
</div>
<div>
<a href="#">
<img src="assets/img/detailsquare.jpg" class="img-responsive" alt="#">
</a>
</div>
</div>
</div>
<!-- /.col-md-3 -->
</div>
<!-- /.container -->
</footer>
<!-- /#footer -->
<!-- *** FOOTER END *** -->
<!-- *** COPYRIGHT ***
_________________________________________________________ -->
<div id="copyright">
<div class="container">
<div class="col-md-12">
<p class="pull-left">© 2015. Your company / name goes here</p>
<p class="pull-right">Template by <a href="http://bootstrapious.com">Bootstrap 4 Themes</a> with support from <a href="http://kakusei.cz">Designové předměty</a>
<!-- Not removing these links is part of the licence conditions of the template. Thanks for understanding :) -->
</p>
</div>
</div>
</div>
<!-- /#copyright -->
<!-- *** COPYRIGHT END *** -->
</div>
<!-- /#all -->
<!-- #### JAVASCRIPT FILES ### -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
window.jQuery || document.write('<script src="js/jquery-1.11.0.min.js"><\/script>')
</script>
<script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.cookie.js"></script>
<script src="assets/js/waypoints.min.js"></script>
<script src="assets/js/jquery.counterup.min.js"></script>
<script src="assets/js/jquery.parallax-1.1.3.js"></script>
<script src="assets/js/front.js"></script>
<script src="assets/js/dirPagination.js"></script>
<?php if ($basename == 'shop') { ?>
<script src="assets/js/core/shop.js"></script>
<?php
} elseif ($basename == 'shop-detail') {
?>
<script src="assets/js/core/shop-detail.js"></script>
<!-- <script src="assets/js/core/shop.js"></script> -->
<?php
}
?>
</body>
</html>