You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
1.2 KiB
40 lines
1.2 KiB
<?php
|
|
/**
|
|
* GrayMatter Theme for Bludit
|
|
* Design was copied from a Flatpress Theme by Marc Thibeault
|
|
*
|
|
* Author: Rick Hays
|
|
* Date: 2022-12-12
|
|
*
|
|
*/
|
|
?>
|
|
|
|
<footer class="footer fixed-bottom">
|
|
<div class="row">
|
|
<div class="col-1"> </div>
|
|
<div class="col-10 align-top text-white text-uppercase">
|
|
<p class="float-left text-left">
|
|
<?php echo $site->footer(); ?>
|
|
</p>
|
|
<p class="float-right text-warning text-right align-top">
|
|
<img height="32" width="32" class="mini-logo" src="<?php echo DOMAIN_THEME_IMG.'bludit.png'; ?>"/> Powered by
|
|
<a target="_blank" class="text-white" href="https://www.bludit.com">
|
|
<?php echo (defined('BLUDIT_PRO'))?'BLUDIT PRO':'BLUDIT' ?>
|
|
</a>
|
|
|
|
Theme:
|
|
<a target="_blank" class="text-white" href="">
|
|
Gray Matter
|
|
</a>
|
|
</p>
|
|
</div>
|
|
<div class="col-1"> </div>
|
|
</div>
|
|
</footer>
|
|
|
|
<!-- Javascript -->
|
|
<?php
|
|
echo Theme::jquery();
|
|
echo Theme::jsBootstrap();
|
|
echo Theme::js('js/gray-matter.js')
|
|
?>
|
|
|