-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
31 lines (23 loc) · 877 Bytes
/
Copy pathfooter.php
File metadata and controls
31 lines (23 loc) · 877 Bytes
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
<footer class="lasso-theme--footer__wrap" itemscope itemtype="http://schema.org/WPFooter">
<div class="lasso-theme--footer__inner">
<p><span>Lasso</span> <br />From the makers of <a href="http://aesopstoryengine.com">Aesop Story Engine</a>.</p>
<ul>
<li><a href="http://twitter.com/aesopinteractiv">Twitter</a></li>
<li><a href="http://facebook.com/aesopinteractive">Facebook</a></li>
</ul>
<p>Exquisitely crafted in Texas.
<br />
<img src="<?php echo LASSO_THEME_URL.'/assets/img/texas.png';?>" alt="built in texas">
</p>
</div>
<div>
<?php
do_action('aesop_theme_before_footer');
wp_footer();
?>
</div>
</footer>
<?php do_action('aesop_theme_body_inside_bottom'); // Aesop Universal Theme Hook ?>
</body>
<?php do_action('aesop_theme_body_after'); // Aesop Universal Theme Hook ?>
</html>