Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions 01-wordpress/wp-content/themes/child-theme/footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<?php
/**
* The default footer template
*
* @package WordPress
* @subpackage Hoverboard
* @since 0.1.0
*/
?>

<footer id="site-credits" class="container">
<div class="row">
<div class="col-sm-6 text-muted credit">
<p>
All content copyright &copy;
<a href="<?php echo home_url('/'); ?>"
rel="home"><?php bloginfo('name', 'display'); ?></a>
</p>
</div>
<div class="col-sm-6 text-muted text-right credit">
<p>
Modified by
<a href="https://github.com/pjurgensen">Patti Jurgensen</a>
</p>
</div>
</div>
</footer>

<?php wp_footer(); ?>
</body>
</html>