Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 36 lines (28 sloc) 865 Bytes
<?php
/**
* Footer template.
*
* @package Inkblot
*/
?>
<?php print inkblot_widgetized('content-footer'); ?>
</div><!-- #content.content -->
<footer role="contentinfo" class="contentinfo widgets columns-<?php print inkblot_count_widgets('site-footer'); ?>">
<?php
if ( ! dynamic_sidebar('site-footer')) :
printf(__('%1$s &bull; Powered by %2$s with %3$s', 'inkblot'),
'<a href="#document">' . inkblot_copyright() . '</a>',
'<a href="https://wordpress.org">WordPress</a>',
'<a href="https://github.com/mgsisk/inkblot">Inkblot</a>'
);
endif;
?>
</footer><!-- .contentinfo -->
<?php print inkblot_widgetized('page-footer'); ?>
</div><!-- .wrapper -->
<?php
print inkblot_widgetized('document-footer');
wp_footer();
?>
</body><!-- #document -->
</html>