-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter-sticky.php
More file actions
30 lines (30 loc) · 1.37 KB
/
footer-sticky.php
File metadata and controls
30 lines (30 loc) · 1.37 KB
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
<?php
/**
* Default Footer
*
* @package WordPress
* @subpackage WP-Glio
*/
?>
</div><!-- /container -->
<footer class="sticky">
<div class="container">
<div class="row">
<div class="glio col-sm-4">
<img src="<?php echo get_stylesheet_directory_uri();?>/assets/img/gliologo.png">
</div>
<div class="col-sm-4">
We believe in giving back to others where it matters most. This ethos propagates through everything we do, from designing corporate identities to developing a piece of software.
</div>
<div class="col-sm-4">
Ideas come naturally to us and we want to build and provide a platform for ourselves and others to give birth to viable products based on collective ideas.
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<!-- More Scripts -->
<script src="<?php echo get_stylesheet_directory_uri();?>/assets/js/classie.js"></script>
<script src="<?php echo get_stylesheet_directory_uri();?>/assets/js/borderMenu.js"></script>
</body>
</html>