blob: ad54052c800588f67130dd634ed548269ff702a0 (
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
|
<!--
pfSense_MODULE: footer
-->
<?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 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>]
</p>
</div>
</footer>
<script src="/jquery/jquery-1.11.1.min.js"></script>
<script src="/jquery/jquery-ui-1.11.2.min.js"></script>
<script src="/bootstrap/js/bootstrap.min.js"></script>
<script src="/jquery/pfSense.js"></script>
</body>
</html>
|