Project

General

Profile

Download (1.45 KB) Statistics
| Branch: | Tag: | Revision:
1
<?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
	</div>
8

    
9
	<footer class="footer">
10
		<div class="container">
11
			<p class="text-muted">
12
				<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
				<a target="_blank" href="<?=$g['product_website_footer']?>"><?=$g['product_name']?></a> is &copy;
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
				<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
			</p>
18
		</div>
19
	</footer>
20

    
21
	<script src="/vendor/jquery/jquery-1.12.0.min.js"></script>
22
	<script src="/vendor/jquery/jquery-ui-1.11.4.min.js"></script>
23
	<script src="/vendor/bootstrap/js/bootstrap.min.js"></script>
24
	<script src="/js/pfSense.js"></script>
25
	<script src="/js/pfSenseHelpers.js"></script>
26
	<script src="/js/polyfills.js"></script>
27
	<script src="/vendor/sortable/sortable.js"></script>
28

    
29
	<script type="text/javascript">
30
	//<![CDATA[
31
		// Un-hide the "Top of page" icons if the page is larger than the window
32
		if ($(document).height() > $(window).height()) {
33
		    $('[id^=tp]').show();
34
		}
35
	//]]>
36
	</script>
37
</body>
38
</html>
(59-59/225)