Skip to content

Commit b3cef74

Browse files
committed
Replace URLs
1 parent d9172b9 commit b3cef74

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

resources/views/layout/default.blade.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@
1919
<script>try{Typekit.load({ async: true });}catch(e){}</script>
2020

2121
<!-- Analytics -->
22-
@if($_SERVER['HTTP_HOST'] === 'explorer.lbry.com')
22+
@if(env('GTM_ID'))
2323
<!-- Global site tag (gtag.js) - Google Analytics -->
24-
<script async src="//www.googletagmanager.com/gtag/js?id=UA-60403362-1"></script>
24+
<script async src="//www.googletagmanager.com/gtag/js?id={{ env('GTM_ID') }}"></script>
2525
<script>
2626
window.dataLayer = window.dataLayer || [];
2727
function gtag(){dataLayer.push(arguments);}
2828
gtag('js', new Date());
29-
gtag('config', 'UA-60403362-4');
29+
gtag('config', '{{ env('GTM_ID') }}');
3030
</script>
3131
@endif
3232

3333
<script type="text/javascript">
34-
// handle coinomi and lbry app urls
34+
// Handle Coinomi and LBRY app URLs
3535
var hashpart = window.location.hash;
3636
if (hashpart.length > 3) {
3737
hashpart = hashpart.substring(3);
@@ -59,7 +59,7 @@ function gtag(){dataLayer.push(arguments);}
5959
@yield('content')
6060
<footer>
6161
<div class="content">
62-
<a href="https://lbry.com">LBRY</a>
62+
<a href="https://lbry.org">LBRY</a>
6363

6464
<div class="page-time">Page took {{ round((microtime(true) - LARAVEL_START) * 1000, 0) }}ms</div>
6565
</div>

0 commit comments

Comments
 (0)