Project

General

Profile

Download (1.39 KB) Statistics
| Branch: | Tag: | Revision:
1 31f03b6c Sjon Hortensius
	<!--
2
		pfSense_MODULE:	footer
3
	-->
4 dc58b7b3 Sjon Hortensius
<?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 31f03b6c Sjon Hortensius
	</div>
11
12
	<footer class="footer">
13
		<div class="container">
14
			<p class="text-muted">
15 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>
16 31f03b6c Sjon Hortensius
				<a target="_blank" href="<?=$g['product_website_footer']?>"><?=$g['product_name']?></a> is &copy;
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 974eb0e4 Stephen Beaver
				<a id="tpr" style="display: none;" href="#" title="<?=gettext('Top of page')?>"><i class="fa fa-caret-square-o-up pull-right"></i></a></span>
20 31f03b6c Sjon Hortensius
			</p>
21
		</div>
22
	</footer>
23
24 a2143951 Sjon Hortensius
	<script src="/jquery/jquery-1.11.2.min.js"></script>
25 31f03b6c Sjon Hortensius
	<script src="/jquery/jquery-ui-1.11.2.min.js"></script>
26
	<script src="/bootstrap/js/bootstrap.min.js"></script>
27 41ea4cf3 Sjon Hortensius
	<script src="/jquery/pfSense.js"></script>
28 3ece7116 Stephen Beaver
	<script src="/jquery/pfSenseHelpers.js"></script>
29 dd7ba16e Stephen Beaver
	<script src="sortable/sortable.min.js"></script>
30 bf69f2f8 Stephen Beaver
31 5892d600 Stephen Beaver
	<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 31f03b6c Sjon Hortensius
</body>
38 bf69f2f8 Stephen Beaver
</html>