datatable.directory codebase
				https://datatable.directory/
			
			
		
			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.
		
		
		
		
		
			
		
			
				
					
					
						
							89 lines
						
					
					
						
							3.8 KiB
						
					
					
				
			
		
		
	
	
							89 lines
						
					
					
						
							3.8 KiB
						
					
					
				| <!DOCTYPE html>
 | |
| <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
 | |
| <head>
 | |
|     <meta charset="utf-8">
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge">
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1">
 | |
| 
 | |
|     <!-- CSRF Token -->
 | |
|     <meta name="csrf-token" content="{{ csrf_token() }}">
 | |
| 
 | |
|     <title>{{ config('app.name', 'Laravel') }}</title>
 | |
| 
 | |
|     <!-- Scripts -->
 | |
|     <script src="{{ asset('js/app.js') }}" defer></script>
 | |
| 
 | |
|     <!-- Styles -->
 | |
|     <link href="{{ asset('css/app.css') }}" rel="stylesheet">
 | |
| </head>
 | |
| <body>
 | |
|     <div id="app">
 | |
|         <nav class="navbar navbar-expand-md navbar-light page-navbar">
 | |
|             <div class="container">
 | |
|                 <a class="navbar-brand" href="{{ url('/') }}">
 | |
|                     {{ config('app.name', 'Laravel') }}
 | |
|                 </a>
 | |
|                 <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="{{ __('Toggle navigation') }}">
 | |
|                     <span class="navbar-toggler-icon"></span>
 | |
|                 </button>
 | |
| 
 | |
|                 <div class="collapse navbar-collapse" id="navbarSupportedContent">
 | |
|                     <!-- Left Side Of Navbar -->
 | |
|                     <ul class="navbar-nav mr-auto">
 | |
| 
 | |
|                     </ul>
 | |
| 
 | |
|                     <!-- Right Side Of Navbar -->
 | |
|                     <ul class="navbar-nav ml-auto">
 | |
|                         <!-- Authentication Links -->
 | |
|                         @guest
 | |
|                             <li class="nav-item">
 | |
|                                 <a class="nav-link" href="{{ route('login') }}">{{ __('Login') }}</a>
 | |
|                             </li>
 | |
|                             <li class="nav-item">
 | |
|                                 <a class="nav-link" href="{{ route('register') }}">{{ __('Register') }}</a>
 | |
|                             </li>
 | |
|                         @else
 | |
|                             <li class="nav-item dropdown">
 | |
|                                 <a id="navbarDropdown" class="nav-link dropdown-toggle" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false" v-pre>
 | |
|                                     {{ Auth::user()->name }} <span class="caret"></span>
 | |
|                                 </a>
 | |
| 
 | |
|                                 <div class="dropdown-menu dropdown-menu-right" aria-labelledby="navbarDropdown">
 | |
|                                     <a class="dropdown-item" href="{{ route('logout') }}"
 | |
|                                        onclick="event.preventDefault();
 | |
|                                                      document.getElementById('logout-form').submit();">
 | |
|                                         {{ __('Logout') }}
 | |
|                                     </a>
 | |
| 
 | |
|                                     <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;">
 | |
|                                         @csrf
 | |
|                                     </form>
 | |
|                                 </div>
 | |
|                             </li>
 | |
|                         @endguest
 | |
|                     </ul>
 | |
|                 </div>
 | |
|             </div>
 | |
|         </nav>
 | |
| 
 | |
|         <main class="py-4">
 | |
|             @yield('content')
 | |
|         </main>
 | |
| 
 | |
| 		<footer class="page-footer text-muted mt-2">
 | |
| 			<div class="container py-2 py-md-4">
 | |
| 				<ul class="d-flex p-0">
 | |
| 					<li class="d-inline-block mr-3"><a href="/about/privacy">Privacy Statement</a>
 | |
| 					<li class="d-inline-block mr-3"><a href="/about/terms">Terms of Service</a>
 | |
| 				</ul>
 | |
| 				<p>
 | |
| 					Maintained by <a href="https://www.ondrovo.com/">Ondřej Hruška</a>
 | |
| 					(<a href="mailto:ondra@ondrovo.com">ondra@ondrovo.com</a>).<br>
 | |
| 					Data tables are licensed CC0 (public domain), unless specified otherwise.
 | |
| 				</p>
 | |
| 			</div>
 | |
| 		</footer>
 | |
|     </div>
 | |
| </body>
 | |
| </html>
 | |
| 
 |