1 |
dc58b7b3
|
Sjon Hortensius
|
<?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 |
31f03b6c
|
Sjon Hortensius
|
</div>
|
8 |
|
|
|
9 |
|
|
<footer class="footer">
|
10 |
|
|
<div class="container">
|
11 |
|
|
<p class="text-muted">
|
12 |
974eb0e4
|
Stephen Beaver
|
<a id="tpl" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa fa-caret-square-o-up pull-left"></i></a>
|
13 |
31f03b6c
|
Sjon Hortensius
|
<a target="_blank" href="<?=$g['product_website_footer']?>"><?=$g['product_name']?></a> is ©
|
14 |
|
|
<?=$g['product_copyright_years']?> by <a href="<?=$g['product_copyright_url']?>" class="tblnk"><?=$g['product_copyright']?></a>. All Rights Reserved.
|
15 |
|
|
[<a href="/license.php" class="tblnk">view license</a>]
|
16 |
5cc910f3
|
Colin Fleming
|
<a id="tpr" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa fa-caret-square-o-up pull-right"></i></a>
|
17 |
31f03b6c
|
Sjon Hortensius
|
</p>
|
18 |
|
|
</div>
|
19 |
|
|
</footer>
|
20 |
|
|
|
21 |
a2143951
|
Sjon Hortensius
|
<script src="/jquery/jquery-1.11.2.min.js"></script>
|
22 |
31f03b6c
|
Sjon Hortensius
|
<script src="/jquery/jquery-ui-1.11.2.min.js"></script>
|
23 |
|
|
<script src="/bootstrap/js/bootstrap.min.js"></script>
|
24 |
41ea4cf3
|
Sjon Hortensius
|
<script src="/jquery/pfSense.js"></script>
|
25 |
3ece7116
|
Stephen Beaver
|
<script src="/jquery/pfSenseHelpers.js"></script>
|
26 |
41b5ab71
|
Stephen Beaver
|
<script src="/sortable/sortable.js"></script>
|
27 |
bf69f2f8
|
Stephen Beaver
|
|
28 |
8fd9052f
|
Colin Fleming
|
<script type="text/javascript">
|
29 |
|
|
//<![CDATA[
|
30 |
5892d600
|
Stephen Beaver
|
// 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 |
8fd9052f
|
Colin Fleming
|
//]]>
|
35 |
5892d600
|
Stephen Beaver
|
</script>
|
36 |
31f03b6c
|
Sjon Hortensius
|
</body>
|
37 |
bf69f2f8
|
Stephen Beaver
|
</html>
|