forked from WISVCH/rechallenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
48 lines (37 loc) · 1.06 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
</div>
<!-- Page footer -->
<footer class="page-footer">
<?php
get_template_part("parts/footer/partners");
?>
<div class="footer-top dotted-border">
<div class="row">
<!-- Contact information -->
<section class="small-12 large-6 columns">
<?php
dynamic_sidebar("footer-left");
?>
</section>
<!-- Twitter -->
<section class="small-12 large-6 columns">
<h1 class="small">Follow us <a href="https://twitter.com/WISVCH/" target="new">@WISVCH</a></h1>
<?php
dynamic_sidebar("footer-right");
?>
</section>
</div>
</div>
<div class="footer-bottom">
<div class="row column">
<p class="text-center">Copyright © W.I.S.V. 'Christiaan Huygens' <?php echo date('Y'); ?></p>
</div>
</div>
</footer>
<?php
// Login form
get_template_part("parts/misc/login-form-modal");
// WordPress footer hooks
wp_footer();
?>
</body>
</html>