1
|
<!--
|
2
|
pfSense_MODULE: footer
|
3
|
-->
|
4
|
<?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
|
</div>
|
11
|
|
12
|
<footer class="footer">
|
13
|
<div class="container">
|
14
|
<p class="text-muted">
|
15
|
<a target="_blank" href="<?=$g['product_website_footer']?>"><?=$g['product_name']?></a> is ©
|
16
|
<?=$g['product_copyright_years']?> by <a href="<?=$g['product_copyright_url']?>" class="tblnk"><?=$g['product_copyright']?></a>. All Rights Reserved.
|
17
|
[<a href="/license.php" class="tblnk">view license</a>]
|
18
|
</p>
|
19
|
</div>
|
20
|
</footer>
|
21
|
|
22
|
<script src="/jquery/jquery-1.11.1.min.js"></script>
|
23
|
<script src="/jquery/jquery-ui-1.11.2.min.js"></script>
|
24
|
<script src="/bootstrap/js/bootstrap.min.js"></script>
|
25
|
<script src="/jquery/pfSense.js"></script>
|
26
|
</body>
|
27
|
</html>
|