This repository has been archived by the owner on Nov 1, 2019. It is now read-only.
forked from thicolares/TEDxTheme
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfooter.php
executable file
·38 lines (26 loc) · 1.44 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
38
<?php $my_theme = wp_get_theme(); ?>
<div class="black-bg spacing-top">
<div class="container">
<footer>
<div class="row">
<div class="col-xs-12">
<p class="text-center"><a class="scrollup"><i class="fa fa-arrow-up fa-2x"></i></a></p>
</div>
<div class="col-xs-6">
<p class="legal">
This independent TEDx event is operated under license from <a href="//www.ted.com/" rel="noopener" target="_blank">TED</a>.<br>
Copyright © <?php echo get_theme_mod('event_name', 'TEDx') ?> <?php echo date("Y"); ?>. All Rights Reserved.</p>
</div>
<div class="col-xs-6">
<p class="text-right web-partners">
Developed by <a href="//alexjustesen.com" rel="noopener" target="_blank">Alex Justesen</a>
<br/><?php printf( '%1$s v%2$s', $my_theme->get( 'Name' ), $my_theme->get( 'Version' ) ); ?>, <i class="fa fa-code-fork"></i> this WP Theme on <a href="//github.com/alexjustesen/TEDxSpringfieldTheme" rel="noopener" target="_blank"><i class="fa fa-github"></i> GitHub</a>.
</p>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
</body>
</html>