1
|
<?php
|
2
|
/*
|
3
|
* We put jquery in the footer; it is the preferred position for speed
|
4
|
* and helps developers to use events[] instead of executing scripts directly.
|
5
|
*/
|
6
|
?>
|
7
|
</div>
|
8
|
<footer class="footer">
|
9
|
<div class="container">
|
10
|
<p class="text-muted">
|
11
|
<a id="tpl" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa fa-caret-square-o-up pull-left"></i></a>
|
12
|
<a target="_blank" href="<?=$g['product_website_footer']?>"><?=$g['product_name']?></a> is ©
|
13
|
<?=$g['product_copyright_years']?> by <a href="<?=$g['product_copyright_url']?>" class="tblnk"><?=$g['product_copyright']?></a>. All Rights Reserved.
|
14
|
[<a href="/license.php" class="tblnk">view license</a>]
|
15
|
<a id="tpr" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa fa-caret-square-o-up pull-right"></i></a>
|
16
|
</p>
|
17
|
</div>
|
18
|
</footer>
|
19
|
|
20
|
<script src="/vendor/jquery/jquery-1.12.0.min.js"></script>
|
21
|
<script src="/vendor/jquery/jquery-ui-1.11.4.min.js"></script>
|
22
|
<script src="/vendor/bootstrap/js/bootstrap.min.js"></script>
|
23
|
<script src="/js/pfSense.js"></script>
|
24
|
<script src="/js/pfSenseHelpers.js"></script>
|
25
|
<script src="/js/polyfills.js"></script>
|
26
|
<script src="/vendor/sortable/sortable.js"></script>
|
27
|
|
28
|
<script type="text/javascript">
|
29
|
//<![CDATA[
|
30
|
// Un-hide the "Top of page" icons if the page is larger than the window
|
31
|
if ($(document).height() > $(window).height()) {
|
32
|
$('[id^=tp]').show();
|
33
|
}
|
34
|
//]]>
|
35
|
</script>
|
36
|
</body>
|
37
|
</html>
|