-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
92 lines (78 loc) · 2.91 KB
/
footer.php
File metadata and controls
92 lines (78 loc) · 2.91 KB
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
<?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 Purple_Turtle_Creative
*/
namespace PTC_Theme;
defined( 'ABSPATH' ) || die();
require_once THEME_PATH . '/classes/public/class-html-routes.php';
?>
<footer id="footer" class="site-footer">
<?php if ( ! HTML_Routes::is_html_endpoint() ) : ?>
<div class="footer-main">
<div class="content-width">
<div class="left">
<section class="col-identity">
<div class="site-logo">
<a href="<?php echo esc_url( home_url( '/' ) ); ?>" aria-label="<?php echo esc_attr( get_bloginfo( 'name' ) ); ?>">
<?php svg( 'decal-duo-opacity.svg' ); ?>
<?php svg( 'type-duo-opacity.svg' ); ?>
</a>
</div>
<div class="site-description">
<p><?php echo get_bloginfo( 'description' ); ?></p>
</div>
<div class="button-group left">
<a class="referral-badge linkedin" href="https://www.linkedin.com/company/purple-turtle-creative" target="_blank">
<?php fa( 'linkedin', 'brands' ); ?>
<p>
<small>Follow on</small>
LinkedIn
</p>
</a>
<a class="referral-badge digitalocean" href="https://m.do.co/c/379a11ccae2a" target="_blank" rel="sponsored nofollow">
<?php fa( 'digital-ocean', 'brands' ); ?>
<p>
<small>Get $200 with</small>
DigitalOcean
</p>
</a>
</div>
</section>
</div>
<div class="right">
<section class="col-recent">
<h2 class="h6">Recent</h2>
<?php the_recent_posts(); ?>
</section>
<section class="col-links">
<h2 class="h6">Plugins</h2>
<a style="cursor:pointer;" href="<?php echo esc_url( site_url( '/completionist/' ) ); ?>">Completionist<br /><small style="color:#e4e6fd;font-weight:300;">╰ Asana for WordPress</small></a>
<a style="cursor:pointer;" href="<?php echo esc_url( site_url( '/completionist-pro/' ) ); ?>">Completionist PRO<br /><small style="color:#e4e6fd;font-weight:300;">╰ Asana client portals</small></a>
<h2 class="h6">Contact</h2>
<a href="mailto:michelle@purpleturtlecreative.com">Michelle Blanchette</a>
</section>
</div>
</div>
</div><!-- .footer-main -->
<?php endif; // is not html endpoint. ?>
<div class="site-info">
<div class="content-width">
<div class="left">
<small>© <?php echo esc_html( gmdate( 'Y' ) ); ?> Purple Turtle Creative, LLC. All rights reserved.</small>
</div>
<div class="right">
<small><?php a_link_to( 'terms-conditions' ); ?><span class="separator"></span><?php a_link_to( 'privacy-policy' ); ?></small>
</div>
</div>
</div><!-- .site-info -->
</footer><!-- #footer -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>