-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·59 lines (47 loc) · 1.49 KB
/
footer.php
File metadata and controls
executable file
·59 lines (47 loc) · 1.49 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
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package MDLWP
*/
?>
<?php do_action( 'mdlwp_before_closing_content' ); ?>
</div><!-- #content -->
<footer class="mdl-mega-footer">
<div class="mdl-grid mdlwp-1200">
<div class="mdl-cell--12-col">
<?php do_action( 'mdlwp_after_opening_footer' ); ?>
<?php get_template_part( 'template-parts/nav', 'footer' ); ?>
<?php do_action( 'mdlwp_before_closing_footer' ); ?>
</div>
</div>
<div class="mdl-grid mdlwp-1200">
<div class="mdl-cell--6-col">
<a href="https://creativecommons.org/licenses/by/4.0/" style="float: left; margin-right: 24px;margin-top: 8px;">
<img src="<?php echo get_stylesheet_directory_uri() . '/img/cc-by.svg' ;?>">
</a>
<p>
Copyright © <?php echo date("Y"); ?><br>
This website is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0</a><br>
</p>
</div>
<div class="mdl-cell--6-col">
<?php dynamic_sidebar( 'footer-authorisation-1' ); ?>
</div>
</div>
</footer>
</main> <!-- .mdl-layout__content -->
</div><!-- #page -->
<?php wp_footer(); ?>
<?php do_action( 'mdlwp_before_closing_body' ); ?>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
setTimeout(function(){
document.getElementsByClassName('mdl-layout__content')[0].focus();
}, 250);
});
</script>
</body>
</html>