-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
67 lines (65 loc) · 2.16 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
<?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 WordPress
* @subpackage Twenty_Seventeen
* @since 1.0
* @version 1.0
*/
?>
<footer class="container-fluid">
<div class="container cf no-gutters">
<div class="col-sm-12 col-md-6 col-lg-3">
<h5>Kontakt</h5>
<p><?php echo nl2br(ot_get_option( 'address' )); ?></p>
<p><?php echo ot_get_option( 'phone' ); ?></p>
<p><?php echo ot_get_option( 'email' ); ?></p>
</div>
<div class="col-sm-12 col-md-6 col-lg-3">
<h5>Catering Scandale</h5>
<nav class="footer-menu">
<?php wp_nav_menu( array(
'menu' => 'footer-menu' ,
'menu_class' => 'cf',
) ); ?>
</nav>
</div>
<div class="col-md-6 col-lg-offset-2 col-lg-4">
<h5>Newsletter</h5>
<p>
Zapisz się do naszego newslettera,</br>aby być zawsze na bieżąco z naszą ofertą.
<?php echo ot_get_option( 'newsletter_prompt' ); ?></p>
<?php es_subbox($namefield = "NO", $desc = "", $group = "Public"); ?>
</div>
</div>
<div class="container">
<div class="footer-bottom">
<div class="col-md-1 no-gutters">
<img class="responsive-img" src="<?php echo get_template_directory_uri() ?>/assets/images/logo-scandale.png">
</div>
<div class="col-md-3">
Scandale Catering</br>jest częścią Grupy Scandale
</div>
<div class="col-md-offset-6 col-md-2 text-right copy no-gutters">
© Grupa Scandale 2018
</div>
</div>
<div class="footer-bottom footer-center">
<div class="no-gutters">
Scandale Catering</br>
jest częścią Grupy Scandale</br>
© Grupa Scandale 2018
</div>
</div>
</div>
</footer>
</div><!-- End: inner-wrap -->
</div><!-- End: outer-wrap -->
<?php wp_footer(); ?>
</body>
</html>