-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
executable file
·47 lines (40 loc) · 1.71 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
39
40
41
42
43
44
45
46
47
<div class="powered-wrapper">
<div class="content">
<span class="powered__info">BrazilJS® é uma iniciativa <a href="https://nasc.io/?utm_source=braziljs"><strong>NASC.</strong></a></span>
<div class="flow-opposite">
<a href="http://marimbondo.me/?utm_source=braziljs" title="Feito à mão por marimbondo"><img src="<?php asset_path('img/logos/logo-marimbondo.svg') ?>" alt="marimbondo" /><span class="visuallyhidden">Desenvolvido por marimbondo</span></a>
</div>
</div>
</div>
</div>
<?php wp_footer(); ?>
<?php if (getEnvironment() === 'dev') { ?>
<script src="<?php echo get_template_directory_uri(); ?>/dev/js/lib/require.js" data-main="<?php echo get_template_directory_uri(); ?>/dev/js/main"></script>
<?php } else { ?>
<script src="<?php asset_path('js/main.js') ?>"></script>
<?php } ?>
<?php
// Load Google Analytics Script
if (getEnvironment() === 'assets') { ?>
<script>
(function(b,o,i,l,e,r){b.GoogleAnalyticsObject=l;b[l]||(b[l]=
function(){(b[l].q=b[l].q||[]).push(arguments)});b[l].l=+new Date;
e=o.createElement(i);r=o.getElementsByTagName(i)[0];
e.src='//www.google-analytics.com/analytics.js';
r.parentNode.insertBefore(e,r)}(window,document,'script','ga'));
ga('create','UA-32119524-1','auto');ga('send','pageview');
</script>
<!-- Scup -->
<script>
// Use the variables below to include the name and email address of the user who is currently logged in.
window.scupSettings = {
channelAccount:"LVC_1ca83170-0aa0-11e8-ba14-c1ce6c5c20e6",
userName: "",
userEmail: ""
}
</script>
<script>!function(t){var e=t.createElement("script");e.src="https://api-live-chat.care.scup.com/widget",t.body.appendChild(e)}(document);</script>
<!-- /Scup -->
<?php } ?>
</body>
</html>