-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathfooter.php
118 lines (83 loc) · 2.67 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the #content div and all content after
*
* @package understrap
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
?>
<div class="wrapper" id="wrapper-footer-full">
<div class="container" id="footer-full-content" tabindex="-1">
<div class="footer-full-sections">
<div class="footer-full-section-social">
<?php if ($mailinglist_url = get_theme_mod('ehri_mailinglist_url', false)): ?>
<div class="newsletter">
<h3>Don't miss new articles</h3>
<a href="<?php echo $mailinglist_url; ?>" class="btn btn-primary btn-lg" target="_blank" rel="noopener" id="subscribe-to-newsletter">
Subscribe to our mailing list
</a>
</div>
<?php endif; ?>
<div class="social-links">
<a href="https://facebook.com/EHRIproject">
<i class="fa fa-facebook" aria-hidden="true"></i>
Facebook
</a>
<a href="https://twitter.com/EHRIproject">
<i class="fa fa-twitter" aria-hidden="true"></i>
Twitter
</a>
<a href="/feed/">
<i class="fa fa-rss" aria-hidden="true"></i>
RSS
</a>
</div>
<p id="copyright">
<span class="text-capitalize">© 2015-<?php echo date("Y"); ?> EHRI Consortium </span>
<a href="https://ehri-project.eu/content/privacy-statement">Privacy policy</a>
</p>
</div>
<div class="footer-full-section-menu">
<div class="footer-full-menus">
<div class="footer-full-menu">
<?php foreach ( wp_get_nav_menu_items( 'footer1' ) as $item ): ?>
<p class="<?php if ( $item->object_id === get_the_ID() ) echo "active"; ?>">
<a href="<?php echo $item->url; ?>"><?php echo $item->title; ?></a>
</p>
<?php endforeach; ?>
</div>
<div class="footer-full-menu">
<p>
<a href="<?php echo esc_url( home_url( '/all-articles/' ) ); ?>">
Categories
</a>
</p>
<ul class="footer-categories">
<?php foreach ( get_categories() as $category ): ?>
<li>
<a href="<?php echo get_category_link( $category ); ?>">
<?php echo $category->name; ?>
</a>
</li>
<?php endforeach; ?>
</ul>
</div>
<div class="footer-full-menu" id="footer-attributions">
<img src="<?php echo get_theme_file_uri( "img/eu_logo.gif" ); ?>" alt="EU Logo" width="68" height="45"/>
<p>The EHRI Project is supported by the European Commission</p>
</div>
</div>
</div>
</div>
</div>
</div><!-- #wrapper-footer-full -->
</div><!-- #page we need this extra closing tag here -->
<?php wp_footer(); ?>
</body>
</html>