You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
1.4 KiB

5 years ago
  1. @inject('pageRepository', 'App\Repositories\PagenRepository')
  2. <!doctype html>
  3. <html lang="de-DE" class="no-js">
  4. <head>
  5. <meta charset="utf-8">
  6. <meta http-equiv="x-ua-compatible" content="ie=edge">
  7. <title>Super Gear - Directus Boilerplate | {{ $page['data']['title'] }}</title>
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <link href="{{ (isset($_SERVER['HTTPS']) ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] }}" rel="canonical">
  10. <link href="/css/styles.css" rel="stylesheet" type="text/css">
  11. </head>
  12. <body>
  13. <header id="header" class="site-header">
  14. <nav class="group group--horizontal navbar__inner">
  15. <ul class="group__section">
  16. @foreach ($homeSection['data'] as $index => $data)
  17. <li class="group__item @if ($index === 0) .current @endif">
  18. <a href="/#{{ $data['slug'] }}">
  19. <i class="icon icon-{{ $data['icon'] }}"></i> {{ $data['title'] }}
  20. </a>
  21. </li>
  22. @endforeach
  23. </ul>
  24. </nav>
  25. </header>
  26. @section('content')
  27. @show
  28. @include('partials.footer')
  29. <script src="/js/index.js"></script>
  30. </body>
  31. </html>