-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
41 lines (39 loc) · 1.3 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
</div>
</div>
<?php if(!is_front_page()): // y'know, since it be an infinite loader + fixed sidebar ?>
<footer class="site-footer">
<div class="wrap">
<div class="last-chance-upsell">
<div class="col">
<h3>Discover <?php bloginfo('name'); ?></h3>
<p>El dorado ipsum wu tang flan and all that such bidnass. Al dorado ipsum wu tang flan and all that such bidnass.</p>
</div>
<div class="col">
<h3>Make <?php bloginfo('name'); ?> yours</h3>
<p>El dorado ipsum wu tang flan and all that such bidnass. Il dorado ipsum wu tang flan and all that such bidnass.</p>
</div>
<div class="col">
<h3>Become a member</h3>
<p>El dorado ipsum wu tang flan and all that such bidnass. Ol dorado ipsum wu tang flan and all that such bidnass.</p>
</div>
</div>
<div class="breadcrumbs">
<div class="site-branding">
<p class="site-title"><a href="<?php echo esc_url(home_url('/')); ?>" rel="home"><?php bloginfo('name'); ?></a></p>
</div>
<nav class="footer-navigation">
<?php
wp_nav_menu(array(
'theme_location' => 'footer-menu',
'menu_id' => 'footer-menu'
));
?>
</nav>
</div>
</div>
</footer>
<?php endif; ?>
<?php // script calls here, perhaps? ?>
<script src="<?php echo get_template_directory_uri(); ?>/js/main.js"></script>
</body>
</html>