14 lines
362 B
Plaintext
14 lines
362 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-[#<%= @dark_hex %>] text-[#<%= @light_hex %>] font-semibold antialiased">
|
|
<div class="container mx-auto px-4 py-8">
|
|
<%= yield %>
|
|
</div>
|
|
</body>
|
|
</html>
|