MickyTsai
一個開發者筆記網站
7ca8a68 verified
Raw
History Blame Contribute Delete
1.62 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CodeScribble Chronicles | Notes</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="components/navbar.js"></script>
<script src="components/footer.js"></script>
<script src="components/notes-sidebar.js"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<div class="flex">
<custom-notes-sidebar></custom-notes-sidebar>
<main class="flex-1 p-8">
<div class="max-w-4xl mx-auto bg-white rounded-xl shadow-md p-6">
<div class="flex justify-between items-center mb-6">
<h1 class="text-3xl font-bold text-gray-800">Developer Notes</h1>
<button id="newNoteBtn" class="bg-blue-600 hover:bg-blue-700 text-white px-4 py-2 rounded-lg flex items-center">
<i data-feather="plus" class="mr-2"></i> New Note
</button>
</div>
<div id="notesContainer" class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
<!-- Notes will be dynamically inserted here -->
</div>
</div>
</main>
</div>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>feather.replace();</script>
</body>
</html>