-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
59 lines (54 loc) · 2.55 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
<?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 Dsignfly
*/
?>
<footer id="colophon" class="site-footer">
<div class="footer-container">
<hr style="border: 1px solid #62585f; margin-top: 20px">
<div class="footer-text">
<div>
<p class="headliner-text" style="font-size: 28px;">Welcome to D'SIGN<em>fly</em></p>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Distinctio doloribus ducimus esse et expedita facere illo illum inventore ipsa ipsam, minus natus neque, quaerat quas quasi repellendus sapiente ullam voluptatum.</p>
<a href="#">Read More</a>
</div>
<div style="width: 100%">
<p class="headliner-text" style="font-size: 28px;">Contact Us</p>
<p>Street 21 Planet, A-11, dapibus tristique 123511<br>
Tel:123 456 7890 Fax:123 456789<br>
Email: <a href="mailto:[email protected]">[email protected]</a></p>
<div class="socials">
<a href=" <?php echo esc_url( get_theme_mod( 'dsignfly_facebook' ) ); ?>"><img src="<?php echo esc_attr( get_template_directory_uri() ); ?>/images/facebook.png" alt="facebook"></a>
<a href=" <?php echo esc_url( get_theme_mod( 'dsignfly_google_plus' ) ); ?> "><img src="<?php echo esc_attr( get_template_directory_uri() ); ?>/images/g+.png" alt="twitter"></a>
<a href=" <?php echo esc_url( get_theme_mod( 'dsignfly_linkedin' ) ); ?> "><img src="<?php echo esc_attr( get_template_directory_uri() ); ?>/images/linkedin.png" alt="instagram"></a>
<a href=" <?php echo esc_url( get_theme_mod( 'dsignfly_pinterest' ) ); ?> "><img src="<?php echo esc_attr( get_template_directory_uri() ); ?>/images/pin.png" alt="pinterest"></a>
<a href=" <?php echo esc_url( get_theme_mod( 'dsignfly_twitter' ) ); ?> "><img src="<?php echo esc_attr( get_template_directory_uri() ); ?>/images/oldx.png" alt="youtube"></a>
</div>
</div>
</div>
<hr style="border: 1px solid #62585f;margin-top: 30px">
</div>
<div class="site-info">
<span>
<?php
/* translators: %s: CMS name, i.e. WordPress. */
printf( esc_html__( '© 2021 - %1$s', 'dsignfly' ), 'D`SIGNfly' );
?>
</span>
<span class="sep"> | </span>
<?php
/* translators: 1: Theme name, 2: Theme author. */
printf( esc_html__( 'Designed by %1$s.', 'dsignfly' ), '<a href="https://rtcamp.com/">rtCamp</a>' );
?>
</div>
</footer>
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>