-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·72 lines (69 loc) · 2.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package WP_Bootstrap_Starter
*/
?>
</main><!-- #content -->
<footer class="mt-auto border-top border-light py-5 bg-light">
<div class="container">
<div class="row align-items-center justify-content-between">
<div class="col-md-8 mb-3 mb-md-0">
<a class="text-dark d-inline-block mb-3" href="https://www.fitnyc.edu/museum/" id="footer-logo">
<img class="mr-0 mr-md-1" src="<?php echo get_template_directory_uri() . '/inc/assets/images/FITmuseum_black.png'; ?>" alt="Museum at FIT Logo"/>
<br class="d-md-none">
<span class="align-middle text-uppercase small">The Most Fashionable Museum in New York City</span>
</a>
<address class="small">
Museum at the Fashion Institute of Technology
<br>
227 West 27th Street
<br>
New York City 10001-5992
</address>
<p class="small mb-0">
©<?php echo date("Y"); ?> Fashion Institute of Technology
</p>
</div>
<div class="col-md-4 col-lg-3">
<ul class="list-inline" id="social">
<li class="list-inline-item">
<a class="text-dark" href="https://twitter.com/museumatFIT" aria-label="Museum at FIT Twitter">
<span class="fab fa-twitter fa-lg" aria-hidden="" title="Museum at FIT Twitter"></span>
</a>
</li>
<li class="list-inline-item">
<a class="text-dark" href="https://www.facebook.com/TheMuseumAtFIT" aria-label="Museum at FIT Facebook">
<span class="fab fa-facebook fa-lg" aria-hidden="" title="Museum at FIT Facebook"></span>
</a>
</li>
<li class="list-inline-item">
<a class="text-dark" href="http://pinterest.com/museumatfit/" aria-label="Museum at FIT Pinterest">
<span class="fab fa-pinterest-p fa-lg" aria-hidden="" title="Museum at FIT Pinterest"></span>
</a>
</li>
<li class="list-inline-item">
<a class="text-dark" href="https://instagram.com/museumatfit" aria-label="Museum at FIT Instagram">
<span class="fab fa-instagram fa-lg" aria-hidden="" title="Museum at FIT Instagram"></span>
</a>
</li>
</ul>
<p class="text-uppercase mb-1" id="footer-title">
Exhibitions Timeline
</p>
<p class="small mb-0" id="footer-credit">
This site is an initiative of the <a href="https://www.fitnyc.edu/museum/">Museum at FIT</a> and the <a href="https://www.fitnyc.edu/library/">FIT Library</a>.
</p>
</div>
</div>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>