-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
45 lines (44 loc) · 1.94 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
<?php
/**
* The footer template.
*
* @author Julian Dawson <[email protected]>
* @license MIT License
* @link https://github.com/carlislephoto/carlislephoto-org-uk-theme
*
* @package WordPress
* @subpackage CarlislePhoto
*/
?>
<?php get_template_part( 'template-parts/content', 'band-goodbye' ); ?>
<footer class="c-page-foot">
<div class="o-wrapper">
<?php wp_footer(); ?>
<span class="c-page-foot__text">© 2017 Carlisle Photo. Made with <svg aria-label="Heart" class="c-page-foot__heart" role="img"><use xlink:href="#icon-heart" xmlns:xlink="http://www.w3.org/1999/xlink"></use></svg> in Bath.</span>
<div class="c-page-foot__nav c-nav-secondary">
<?php wp_nav_menu( array( 'theme_location' => 'secondary', 'container' => false, 'menu_class' => 'c-nav-secondary' ) ); ?>
</div>
<div class="c-page-foot__social c-social">
<ul class="o-list-inline">
<li class="c-social__item o-list-inline__item">
<a aria-label="Twitter" class="c-social__link" href="https://twitter.com/CarlislePF" target="_blank">
<svg aria-hidden="true" class="c-social__icon" role="img">
<use xlink:href="#icon-twitter" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
<li class="c-social__item o-list-inline__item">
<a aria-label="Facebook" class="c-social__link" href="https://www.facebook.com/CarlislePhotoFestival" target="_blank">
<svg aria-hidden="true" class="c-social__icon" role="img">
<use xlink:href="#icon-facebook" xmlns:xlink="http://www.w3.org/1999/xlink"></use>
</svg>
</a>
</li>
</ul>
</div>
</div>
</footer>
<script src="<?php echo get_template_directory_uri() . '/js/vendor.bundle.js' ?>"></script>
<script src="<?php echo get_template_directory_uri() . '/js/main.bundle.js' ?>"></script>
</body>
</html>