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