Example #1
0
/**
 * Footer Information
 *
 * @since Create 0.2
 */
function create_footer_info()
{
    ?>
	<div class="site-info">
		<?php 
    create_copyright();
    ?>
		<?php 
    create_seperator();
    ?>
		<?php 
    create_profile();
    ?>
	</div><!-- .site-info -->
	
<?php 
}
Example #2
0
/**
 * Creates the html for the footer.
 */
function create_footer()
{
    $text = Html::luo_div(create_copyright(), array(Attr::classs("container-fluid text-center"), Attr::id("footer")));
    return $text;
}