-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
31 lines (28 loc) · 865 Bytes
/
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
<footer class="footer">
<div class="footer-inner">
<div class="footer-column">
<h3 class="footer-column-title">Contact</h3>
<div class="footer-column-description">
<?= apply_filters('the_content', get_field('footer_column_1', 'option')) ?>
</div>
</div>
<div class="footer-column">
<h3 class="footer-column-title">Liens externes</h3>
<div class="footer-column-description">
<?= apply_filters('the_content', get_field('footer_column_2', 'option')) ?>
</div>
</div>
<div class="footer-column">
<div class="footer-column-description">
<?= apply_filters('the_content', get_field('footer_column_3', 'option')) ?>
</div>
</div>
</div>
</footer>
</main>
<!--[if lte IE 9]>
<? get_view('ie10'); ?>
<![endif]-->
<? wp_footer() ?>
</body>
</html>