-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
47 lines (39 loc) · 1.28 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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after.
*/
?>
</div><!-- #main -->
</section><!-- section -->
<div class="footer-callout">
<?php shapely_footer_callout(); ?>
</div>
<footer id="colophon" class="site-footer footer bg-dark" role="contentinfo">
<div class="container footer-inner">
<div class="row">
<?php get_sidebar( 'footer' ); ?>
</div>
<div class="row">
<div class="site-info col-sm-6">
<div class="copyright-text">
<?php echo wp_kses_post( get_theme_mod( 'shapely_footer_copyright' ) ); ?>
</div>
<div class="footer-credits">
Design von <a href="https://haslo.ch/">haslo</a>, und
<a href="https://github.com/haslo/codedojo_theme">hier ist der Code</a>.
</div>
</div><!-- .site-info -->
<div class="col-sm-6 text-right">
<?php shapely_social_icons(); ?>
</div>
</div>
</div>
<a class="btn btn-sm fade-half back-to-top inner-link" href="#top"><i class="fa fa-angle-up"></i></a>
</footer><!-- #colophon -->
</div>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>