-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
34 lines (22 loc) · 975 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
32
33
34
<?php
$contact = get_field( 'contact', 'options' );
$logo = array(
'src' => get_stylesheet_directory_uri() . '/assets/images/ddp-ce-logo.svg',
'alt' => 'Co-funded by the Creative European Programme of the European Union',
);
?>
<footer id="footer" class="rich-text mt-auto">
<?php get_template_part( 'template-parts/blocks/footer/newsletter' ); ?>
<?php get_template_part( 'template-parts/blocks/footer/logos' ); ?>
<div class="md:flex justify-between px-15 lg:px-40 py-20 text-16 border-t">
<div class="md:text-left"><?php echo wp_kses_post( $contact['left'] ); ?></div>
<div class="md:text-right"><?php echo wp_kses_post( $contact['right'] ); ?></div>
</div>
<div class="p-40 border-t">
<img class="block mx-auto" style="max-height: 8rem;" src="<?php echo esc_attr( $logo['src'] ); ?>" alt="<?php echo esc_attr( $logo['alt'] ); ?>" />
</div>
</footer>
</div>
<div id="wp-footer"><?php wp_footer(); ?></div>
</body>
</html>