File size: 2,059 Bytes
fa5264e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>TouchTask - Mobile Todo App</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="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/month-accordion.js"></script>
</head>
<body class="bg-gray-50 min-h-screen">
<custom-navbar></custom-navbar>
<main class="container mx-auto px-4 py-6">
<div class="mb-8">
<h1 class="text-3xl font-bold text-gray-800 mb-2">Meine Aufgaben</h1>
<p class="text-gray-600">Verwalte deine Aufgaben nach Monaten</p>
</div>
<div class="space-y-4">
<custom-month-accordion month="Januar"></custom-month-accordion>
<custom-month-accordion month="Februar"></custom-month-accordion>
<custom-month-accordion month="März"></custom-month-accordion>
<custom-month-accordion month="April"></custom-month-accordion>
</div>
<div class="fixed bottom-6 right-6">
<button class="bg-blue-500 hover:bg-blue-600 text-white rounded-full p-4 shadow-lg transition-colors">
<i data-feather="plus"></i>
</button>
</div>
</main>
<script src="script.js"></script>
<script>
feather.replace();
document.addEventListener('DOMContentLoaded', function() {
// Initialize accordion functionality
const accordions = document.querySelectorAll('custom-month-accordion');
accordions.forEach(acc => {
acc.addEventListener('click', function() {
this.toggle();
});
});
});
</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |