79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			3.0 KiB
		
	
	
	
		
			PHP
		
	
	
| <!doctype html>
 | |
| <html>
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
| 	<title>Beranda | Sekolah Adiwiyata DKI Jakarta</title>
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
| 
 | |
| 	<meta name="keywords" content="Sekolah Adiwiyata" />
 | |
| 	<meta name="description" content="Sekolah Adiwiyata Lingkungan Hidup Provinsi DKI Jakarta">
 | |
| 	<meta name="author" content="ilham">
 | |
| 	<!-- Favicon -->
 | |
| 	<link rel="shortcut icon" href="{{ asset('assets/logo-dinas.ico') }}" type="image/x-icon" />
 | |
| 
 | |
| 	<link rel="apple-touch-icon" href="{{ asset('assets/logo-dinas.ico') }}">
 | |
|     <script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
 | |
| 	<style>
 | |
| 		.bg-success{
 | |
| 			background: #009D66!important;
 | |
| 		}
 | |
| 		.bg-warning{
 | |
| 			background: #F7AE15!important;
 | |
| 		}
 | |
| 		.bg-danger{
 | |
| 			background: #B9375D!important;
 | |
| 		}
 | |
| 		.bg-info{
 | |
| 			background: #3B38A0!important;
 | |
| 		}
 | |
| 		.text-success{
 | |
| 			color: #009D66!important;
 | |
| 		}
 | |
| 		.text-warning{
 | |
| 			color: #F7AE15!important;
 | |
| 		}
 | |
| 		.text-danger{
 | |
| 			color: #B9375D!important;
 | |
| 		}
 | |
| 		.text-info{
 | |
| 			color: #3B38A0!important;
 | |
| 		}
 | |
| 	</style>
 | |
|   </head>
 | |
|   <body>
 | |
| 	<div class="container mx-auto">
 | |
| 		<div class="max-w-screen-xl flex flex-wrap flex-between justify-between items-center gap-5 mx-auto p-5">
 | |
| 			<div class="flex flex-row gap-10">
 | |
| 				<a href="{{ url('/') }}" class="flex items-center space-x-3 rtl:space-x-reverse">
 | |
| 					<img src="{{ asset('assets/logo-dinas.ico') }}" class="h-8" />
 | |
| 				</a>
 | |
| 				<div class="items-center justify-between hidden w-full md:flex md:w-auto md:order-1" id="navbar-cta">
 | |
| 					<ul class="flex flex-col font-medium p-4 md:p-0 mt-4 border border-gray-100 rounded-lg bg-gray-50 md:space-x-8 rtl:space-x-reverse md:flex-row md:mt-0 md:border-0 md:bg-white dark:bg-gray-800 md:dark:bg-gray-900 dark:border-gray-700">
 | |
| 						<li>
 | |
| 							<a href="#" class="block py-2 px-3 text-success" aria-current="page">Beranda</a>
 | |
| 						</li>
 | |
| 						<li>
 | |
| 							<a href="#" class="block py-2 px-3">Sekolah Adiwiyata</a>
 | |
| 						</li>
 | |
| 						<li>
 | |
| 							<a href="#" class="block py-2 px-3">Kegiatan Adiwiyata</a>
 | |
| 						</li>
 | |
| 						<li>
 | |
| 							<a href="#" class="block py-2 px-3">Galeri</a>
 | |
| 						</li>
 | |
| 					</ul>
 | |
| 				</div>
 | |
| 			</div>
 | |
| 			<div class="flex md:order-2 space-x-3 md:space-x-0 rtl:space-x-reverse">
 | |
| 				<button data-collapse-toggle="navbar-cta" type="button" class="inline-flex items-right p-2 w-10 h-10 justify-end text-sm text-gray-500 rounded-lg md:hidden hover:bg-gray-100 focus:outline-none focus:ring-2 focus:ring-gray-200 dark:text-gray-400 dark:hover:bg-gray-700 dark:focus:ring-gray-600" aria-controls="navbar-cta" aria-expanded="false">
 | |
| 					<span class="sr-only">Open main menu</span>
 | |
| 					<svg class="w-5 h-5" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 17 14">
 | |
| 						<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M1 1h15M1 7h15M1 13h15"/>
 | |
| 					</svg>
 | |
| 				</button>
 | |
| 				<button type="button" class="text-white bg-success focus:outline-none font-medium rounded-lg text-sm px-4 py-2 text-right">Login</button>
 | |
| 			</div>
 | |
| 		</div>
 | |
| 	</div>
 | |
|   </body>
 | |
| </html> |