summaryrefslogtreecommitdiffstats
path: root/application/views/footer.php
diff options
context:
space:
mode:
Diffstat (limited to 'application/views/footer.php')
-rw-r--r--application/views/footer.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/application/views/footer.php b/application/views/footer.php
new file mode 100644
index 000000000..e748cd4e3
--- /dev/null
+++ b/application/views/footer.php
@@ -0,0 +1,33 @@
+<?php
+if (is_cli_client() && !isset($force_full_html)) {
+ return;
+}
+?>
+ </div>
+<div id="push"></div>
+</div>
+<footer class="footer" id="footer">
+ <div class="container muted credits">
+ <p>Site code licensed under <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank">AGPL v3</a>.</p>
+ <p><a href="http://glyphicons.com">Glyphicons Free</a> licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</p>
+ <ul class="footer-links">
+ <li><a href="http://git.server-speed.net/users/flo/filebin/">Source</a></li>
+ <li class="muted">&middot;</li>
+ <li><a href="<?php echo site_url("file/contact"); ?>">Contact</a></li>
+ </ul>
+ </div>
+</footer>
+
+<?php
+$CI = &get_instance();
+if ($CI->config->item("environment") == "development" && property_exists($CI, "email")) {
+ echo $CI->email->print_debugger();
+}
+?>
+<?php echo include_js("/data/js/jquery-2.0.3.min.js"); ?>
+<?php echo include_js("/data/js/jquery-ui-1.10.3.custom.min.js"); ?>
+<?php echo include_js("/data/js/bootstrap.min.js"); ?>
+<?php echo include_js("/data/js/script.js"); ?>
+<?php echo include_registered_js(); ?>
+</body>
+</html>