Examples of code I've written in PHP, Javascript, SCSS, etc.
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
 
 
 
 
 
 

62 Zeilen
1.7 KiB

  1. <!DOCTYPE html>
  2. <head>
  3. {{-- This section may need to be overwritten in descendants --}}
  4. @section('head-metas')
  5. <meta charset='utf-8'>
  6. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  7. <link rel="stylesheet" href="">
  8. <link rel="shortcut icon" type="image/jpg" href="/img/arrow-up.svg"/>
  9. <link rel="stylesheet" href="/css/app.css">
  10. @if (config('app.env') == 'production')
  11. <!-- Global site tag (gtag.js) - Google Analytics -->
  12. <script async src="https://www.googletagmanager.com/gtag/js?id=G-LH36E9P3P5"></script>
  13. <script>
  14. window.dataLayer = window.dataLayer || [];
  15. function gtag(){dataLayer.push(arguments);}
  16. gtag('js', new Date());
  17. gtag('config', 'G-LH36E9P3P5');
  18. </script>
  19. <!-- Global site tag (gtag.js) - Google Analytics -->
  20. <script async src="https://www.googletagmanager.com/gtag/js?id=UA-200591850-1">
  21. </script>
  22. <script>
  23. window.dataLayer = window.dataLayer || [];
  24. function gtag(){dataLayer.push(arguments);}
  25. gtag('js', new Date());
  26. gtag('config', 'UA-200591850-1');
  27. </script>
  28. @endif
  29. @show
  30. <title>Trendplays - @yield('title')</title>
  31. </head>
  32. <body>
  33. <nav class="navigator @yield('heading-style')" role="navigation">
  34. <a id='logo' href='/'>
  35. <h1>Trendplays</h1>
  36. <img src="/img/arrow-up.svg" height="30px" alt="">
  37. </a>
  38. @yield('login-form')
  39. <span class="icon-bar"></span>
  40. </nav>
  41. @yield('content')
  42. @section('footer')
  43. <footer class='footer text-center'>
  44. <div class='foot-links'>
  45. <a href="/terms-and-policy">Terms & Policy</a>
  46. <a href="mail:support@trendplays.com">Help</a>
  47. @auth <a href="/logout">Logout</a> @endauth
  48. </div>
  49. <small>©Copyright 2021 Trendplays Network, Inc.</small>
  50. </footer>
  51. @show
  52. @section('scripts')
  53. @show
  54. </body>