Replace URLs

This commit is contained in:
Ben van Hartingsveldt 2025-06-28 21:11:49 +02:00
parent d9172b98fd
commit b3cef74e2f
No known key found for this signature in database
GPG key ID: 261AA214130CE7AB

View file

@ -19,19 +19,19 @@
<script>try{Typekit.load({ async: true });}catch(e){}</script>
<!-- Analytics -->
@if($_SERVER['HTTP_HOST'] === 'explorer.lbry.com')
@if(env('GTM_ID'))
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="//www.googletagmanager.com/gtag/js?id=UA-60403362-1"></script>
<script async src="//www.googletagmanager.com/gtag/js?id={{ env('GTM_ID') }}"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-60403362-4');
gtag('config', '{{ env('GTM_ID') }}');
</script>
@endif
<script type="text/javascript">
// handle coinomi and lbry app urls
// Handle Coinomi and LBRY app URLs
var hashpart = window.location.hash;
if (hashpart.length > 3) {
hashpart = hashpart.substring(3);
@ -59,7 +59,7 @@
@yield('content')
<footer>
<div class="content">
<a href="https://lbry.com">LBRY</a>
<a href="https://lbry.org">LBRY</a>
<div class="page-time">Page took {{ round((microtime(true) - LARAVEL_START) * 1000, 0) }}ms</div>
</div>