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.
		
		
		
		
		
			
		
			
				
					
					
						
							41 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							41 lines
						
					
					
						
							1.1 KiB
						
					
					
				@inject('pageRepository', 'App\Repositories\PageRepository')
 | 
						|
@inject('markdownHelper', 'App\Helpers\MarkdownHelper')
 | 
						|
 | 
						|
<!DOCTYPE html>
 | 
						|
<html lang="de-DE">
 | 
						|
    <head>
 | 
						|
        <meta charset="utf-8">
 | 
						|
        <meta http-equiv="x-ua-compatible" content="ie=edge">
 | 
						|
        <title>
 | 
						|
            Elina Penner | {{ $page['data']['title'] }}
 | 
						|
        </title>
 | 
						|
 | 
						|
        @include('partials.meta')
 | 
						|
 | 
						|
        <meta name="viewport" content="width=device-width, initial-scale=1">
 | 
						|
 | 
						|
        <link href="{{ (isset($_SERVER['HTTPS']) ? 'https' : 'http').'://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'] }}" rel="canonical">
 | 
						|
        <link href="{{ asset('/css/index.css') }}" rel="stylesheet" type="text/css">
 | 
						|
 | 
						|
        @stack('head')
 | 
						|
    </head>
 | 
						|
    <body class="{{ viewName($page) }}">
 | 
						|
 | 
						|
        <header class="site-header">
 | 
						|
            <h1 class="site-header__title">
 | 
						|
                Super Gear Directus
 | 
						|
            </h1>
 | 
						|
        </header>
 | 
						|
 | 
						|
        <main class="site-main">
 | 
						|
            @yield('content')
 | 
						|
        </main>
 | 
						|
 | 
						|
        <footer class="site-footer">
 | 
						|
 | 
						|
        </footer>
 | 
						|
 | 
						|
        @stack('scripts')
 | 
						|
    </body>
 | 
						|
</html>
 |