mirror of
				https://github.com/KevinMidboe/linguist.git
				synced 2025-10-29 17:50:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			334 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			334 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html>
 | |
| <head>
 | |
|     <title>@yield('title', 'We love GitHub')</title>
 | |
|     @stack('scripts')
 | |
|     @stack('styles')
 | |
| </head>
 | |
| <body>
 | |
|     @include('partials.nav')
 | |
| 
 | |
|     @yield('content')
 | |
| 
 | |
|     <ul>
 | |
|         @foreach($foo as $bar)
 | |
|         <li>{{ $bar }}</li>
 | |
|         @endforeach
 | |
|     </ul>
 | |
| 
 | |
|     {!! $raw_content !!}
 | |
| </body>
 | |
| </html>
 |