2020-07-30 00:55:37 +00:00
|
|
|
<?php
|
|
|
|
$quotes = isset($quotes) && is_array($quotes) ? $quotes : FM_FEET;
|
|
|
|
$baseUrl = empty($external) ? '' : '//' . $_SERVER['HTTP_HOST'];
|
|
|
|
|
|
|
|
if(empty($is_index)):
|
|
|
|
?>
|
|
|
|
</div>
|
|
|
|
<?php endif; if(empty($hide)): ?>
|
|
|
|
<div class="footer">
|
|
|
|
<div class="footer-text">© flashwave 2010-<?=date('Y');?> - <?=($quotes[array_rand($quotes)]);?></div>
|
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
<script src="<?=$baseUrl;?>/assets/2020v2.js" charset="utf-8" type="text/javascript"></script>
|
|
|
|
<?php if(isset($scripts) && is_array($scripts)) foreach($scripts as $script): ?>
|
|
|
|
<script src="<?=$script;?>" charset="utf-8" type="text/javascript"></script>
|
|
|
|
<?php endforeach;?>
|
2020-08-20 18:37:24 +00:00
|
|
|
<?php if($_SERVER['HTTP_HOST'] === 'flash.moe'): ?>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _paq = window._paq || [];
|
|
|
|
_paq.push(['disableCookies']);
|
|
|
|
_paq.push(['trackPageView']);
|
|
|
|
_paq.push(['enableLinkTracking']);
|
|
|
|
(function() {
|
|
|
|
_paq.push(['setTrackerUrl', '//uiharu.railgun.sh/mtm']);
|
|
|
|
_paq.push(['setSiteId', 'w4PqjBGmOL5l']);
|
|
|
|
var g = document.createElement('script');
|
|
|
|
g.type = 'text/javascript'; g.async = true;
|
|
|
|
g.defer = true; g.src = '//uiharu.railgun.sh/mtm.js';
|
|
|
|
document.head.appendChild(g);
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
<?php endif; ?>
|
2020-07-30 00:55:37 +00:00
|
|
|
</body>
|
|
|
|
</html>
|