-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
33 lines (30 loc) · 794 Bytes
/
footer.php
File metadata and controls
33 lines (30 loc) · 794 Bytes
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
<?php
/**
* Code the Change template for the footer
*
* @package startertheme
*/
?>
<html>
<head>
<!--<link rel="stylesheet" type="text/css" href="assets/css/style.css">-->
<style><?php include 'style.css';?></style>
</head>
<body>
<p>This is a footer</p>
<footer class="footer">
<div class="flex-container">
<div>
<img class="header-logo logo-border footer-logo" src="<?php echo get_header_image(); ?>" alt="YWCA logo" />
<?php dynamic_sidebar('footer_text');?>
</div>
<p>
© <?php echo date("Y"); ?> Vancouver Tenants Union 2019. <a href="http://codethechange.ca"> Developed by Code the Change Foundation.</a>
</p>
</div>
</div>
</div>
</footer>
<?php wp_footer() ?>
</body>
</html>