blob: c6b5dae9a3696addce89a58a6e42d17c897c2ee8 (
plain)
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
|
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package understrap
*/
?>
<?php get_sidebar('footerfull'); ?>
<div class="wrapper" id="wrapper-footer">
<footer class="footer shadow-y-2">
<div class="container">
<div class="col-md-12">
<p class="sticky-footer">
<span class="fa fa-bar-chart"></span> <a class="footer-a" href="https://www.maxmail.xyz/statistics" title="Statistics"> Statistics</a>
|
<span class="fa fa-legal"></span> <a class="footer-a" href="/terms-of-service" title="Terms of Service"> Terms of Service</a>
|
<span class="fa fa-user-secret"></span> <a class="footer-a" href="/privacy-policy" title="Privacy"> Privacy Policy</a>
|
<span class="fa fa-legal"></span> <a class="footer-a" href="/imprint/" title="Imprint / Impressum"> Imprint</a>
<span class="sm-display">
|
</span>
<span class="lg-pull-right">
<span class="fa fa-copyright"></span> <a class='footer-a' href='//www.iamfabulous.de' title='Maximilian Möhring'>Maximilian Möhring <span class="fa fa-external-link"></span></a>
</span>
</p>
</div>
</div>
</footer>
<?php /*
<div class="container">
<div class="row">
<div class="col-md-12">
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="site-info">
<a href="<?php echo esc_url( __( 'http://wordpress.org/', 'understrap' ) ); ?>"><?php printf( __( 'Proudly powered by %s', 'understrap' ), 'WordPress' ); ?></a>
<span class="sep"> | </span>
<?php printf( __( 'Theme: %1$s by %2$s.', 'understrap' ), 'understrap', '<a href="http://understrap.com/" rel="designer">understrap.com</a>' ); ?>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!--col end -->
</div><!-- row end -->
</div><!-- container end -->
*/ ?>
</div><!-- wrapper end -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>
|