My SMM panel
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

master.blade.php 1.0 KiB

3 år sedan
12345678910111213141516171819202122232425262728293031323334353637383940
  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. @show
  11. <title>Trendplays - @yield('title')</title>
  12. </head>
  13. <body>
  14. <nav class="navigator @yield('heading-style')" role="navigation">
  15. <a id='logo' href='/'>
  16. <h1>Trendplays</h1>
  17. <img src="/img/arrow-up.svg" height="30px" alt="">
  18. </a>
  19. @yield('login-form')
  20. <span class="icon-bar"></span>
  21. </nav>
  22. @yield('content')
  23. @section('footer')
  24. <footer class='footer text-center'>
  25. <div class='foot-links'>
  26. <a href="/terms-and-policy">Terms & Policy</a>
  27. <a href="mail:support@trendplays.com">Help</a>
  28. @auth <a href="/logout">Logout</a> @endauth
  29. </div>
  30. <small>©Copyright 2021 Trendplays Network, Inc.</small>
  31. </footer>
  32. @show
  33. @section('scripts')
  34. @show
  35. </body>