forked from thicolares/TEDxTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·49 lines (45 loc) · 1.74 KB
/
footer.php
File metadata and controls
executable file
·49 lines (45 loc) · 1.74 KB
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
39
40
41
42
43
44
45
46
47
48
49
<?php
$template_url = get_template_directory_uri();
?>
<div class="black-bg spacing-top">
<div class="container">
<footer>
<div class="row">
<div class="col-md-4 col-sm-12 legal">
This TEDx event is independently organized.<br>
Copyright © <?= get_theme_mod('event_name', 'TEDx') ?> <?= date("Y"); ?>. All Rights Reserved. <a
href="/legal-and-privacy/">Legal & Privacy</a>
</div>
<div class="col-md-3 col-sm-12">
<?= get_theme_mod('twitter_follow_button'); ?>
</div>
<div class="col-md-5 col-sm-12 web-partners">
<div class="built-by gutter-right gutter-bottom">Built By</div>
<a class="jc-link gutter-right ir" taget="_blank" href="http://www.jetcooper.com">Jet Cooper</a>
<a class="twg-link ir" target="_blank" href="http://www.twg.ca">TWG</a>
</div>
</div>
</footer>
</div>
</div>
<?php wp_footer(); ?>
<!-- Compiled JS -->
<script src="<?= $template_url; ?>/dist/js/vendor.js" type="text/javascript"></script>
<script src="<?= $template_url; ?>/dist/js/application.js" type="text/javascript"></script>
<!-- Live Reload -->
<?php define('WP_ENV', 'development'); ?>
<?php if (defined('WP_ENV') && WP_ENV !== 'production'): ?>
<script src="http://0.0.0.0:35729/livereload.js?snipver=1"></script>
<?php endif; ?>
<!-- 3rd Party Embeds -->
<script>!function (d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0], p = /^http:/.test(d.location) ? 'http' : 'https';
if (!d.getElementById(id)) {
js = d.createElement(s);
js.id = id;
js.src = p + '://platform.twitter.com/widgets.js';
fjs.parentNode.insertBefore(js, fjs);
}
}(document, 'script', 'twitter-wjs');</script>
</body>
</html>