-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
37 lines (32 loc) · 1.03 KB
/
footer.php
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
28
29
30
31
32
33
34
35
36
37
<?php
// prevent script from getting called directly
if (!defined("URLAUBE")) { die(""); }
?>
<!-- Footer Section -->
<section id="footer" class="footer-section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p>
<?php
// output COPYRIGHT_HTML if it is set or COPYRIGHT otherwise
if (null !== value(Themes::class, "copyright_html")) {
print(value(Themes::class, "copyright_html").NL);
} else {
print(html(value(Themes::class, COPYRIGHT)).NL);
}
?>
</p>
</div>
</div>
</div>
</section>
<!-- jQuery -->
<script src="<?= html(path2uri(__DIR__."/js/jquery.min.js")) ?>"></script>
<!-- Bootstrap Core JavaScript -->
<script src="<?= html(path2uri(__DIR__."/js/bootstrap.min.js")) ?>"></script>
<!-- Scrolling Nav JavaScript -->
<script src="<?= html(path2uri(__DIR__."/js/jquery.easing.min.js")) ?>"></script>
<script src="<?= html(path2uri(__DIR__."/js/scrolling-nav.js")) ?>"></script>
</body>
</html>