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