Project

General

Profile

Download (1.39 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="/jquery/jquery-1.11.2.min.js"></script>
22
	<script src="/jquery/jquery-ui-1.11.2.min.js"></script>
23
	<script src="/bootstrap/js/bootstrap.min.js"></script>
24
	<script src="/jquery/pfSense.js"></script>
25
	<script src="/jquery/pfSenseHelpers.js"></script>
26
	<script src="/sortable/sortable.js"></script>
27

    
28
	<script type="text/javascript">
29
	//<![CDATA[
30
		// 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
	//]]>
35
	</script>
36
</body>
37
</html>
(59-59/229)