-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathfooter.php
53 lines (37 loc) · 1.3 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
<footer>
<div class="social-group">
<?php if(SPRITE !== "false"): ?>
<a href="#"><i class="icon-github"></i></a>
<a href="#"><i class="icon-fork"></i></a>
<a href="#"><i class="icon-plus"></i></a>
<a href="#"><i class="icon-twitter"></i></a>
<a href="#"><i class="icon-equals"></i></a>
<?php else: ?>
<a href="#"><img src="img/sprites/raw/github.png"></i></a>
<a href="#"><img src="img/sprites/raw/fork.png"></a>
<a href="#"><img src="img/sprites/raw/plus.png"></i></a>
<a href="#"><img src="img/sprites/raw/twitter.png"></a>
<a href="#"><img src="img/sprites/raw/equals.png"></a>
<?php endif;?>
</div> <!-- social-group -->
<div class="anim-container u-mtm u-sm-mtl img-center u-pls">
<div class="jetpack">
<div class="fly">
<div class="hombre"></div>
<div class="fuego"></div>
</div>
</div>
</div>
</footer>
<!-- SCRIPT FOOTER -->
<?php (SCRIPT == "footer") ? include('inc/scripts.php') : ""; ?>
<!-- CSS async -->
<?php if(CSS == "inline"): ?>
<script>loadCSS( "<?= BASEURL;?>css/app.css" );</script>
<?php endif;?>
<?php if(SPRITE == "true"): ?>
<script>loadCSS( "<?= BASEURL;?>css/sprite.css" );</script>
<?php endif;?>
</body>
</html>
<?php (HTMLMIN == "true") ? ob_end_flush() : ""; ?>