Project

General

Profile

Download (1.45 KB) Statistics
| Branch: | Tag: | Revision:
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
	<footer class="footer">
9
		<div class="container">
10
			<p class="text-muted">
11 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>
12 31f03b6c Sjon Hortensius
				<a target="_blank" href="<?=$g['product_website_footer']?>"><?=$g['product_name']?></a> is &copy;
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 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>
16 31f03b6c Sjon Hortensius
			</p>
17
		</div>
18
	</footer>
19
20 9d1be24e Jared Dillard
	<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 508e44ff NOYB
	<script src="/js/polyfills.js"></script>
26 9d1be24e Jared Dillard
	<script src="/vendor/sortable/sortable.js"></script>
27 b39e67a9 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>