14 lines
341 B
Plaintext
14 lines
341 B
Plaintext
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8">
|
||
|
|
<title>Network Directory</title>
|
||
|
|
<script src="https://cdn.jsdelivr.net/npm/@tailwindcss/browser@4"></script>
|
||
|
|
</head>
|
||
|
|
<body class="bg-[#140029] text-[#8000FF] font-semibold antialiased">
|
||
|
|
<div class="container mx-auto px-4 py-8">
|
||
|
|
<%= yield %>
|
||
|
|
</div>
|
||
|
|
</body>
|
||
|
|
</html>
|