My SMM panel
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

40 строки
1014 B

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