Kumi
38d9d36312
Introduced the Kanblendar project, which combines a Kanban board and a daily calendar. Users can create, edit, and organize tasks in columns and time slots, with notification support for upcoming tasks. Added README.md with detailed usage instructions and LICENSE file for licensing under MIT. Created example files (HTML, CSS, JS) to illustrate the usage of Kanblendar, and essential styles and scripts for its functionality.
33 lines
No EOL
1,020 B
HTML
33 lines
No EOL
1,020 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Kanblendar</title>
|
|
<link rel="stylesheet" href="kanblendar.css">
|
|
<link rel="stylesheet" href="example.css">
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<h1>Kanblendar</h1>
|
|
<button id="createTaskBtn">Create Task</button>
|
|
</header>
|
|
<main>
|
|
<section class="kanblendar" id="kanblendar"
|
|
data-columns="Backlog,In Progress,Done"
|
|
data-start-time="08:00"
|
|
data-end-time="18:00"
|
|
data-interval="60">
|
|
<!-- Kanban columns will be dynamically generated here -->
|
|
</section>
|
|
</main>
|
|
<footer>
|
|
<p>Brought to you by <a href="https://git.private.coffee/kumi/kanblendar">Kumi</a></p>
|
|
</footer>
|
|
|
|
<!-- Optional: Developers can define their own modal here -->
|
|
|
|
<script src="kanblendar.js"></script>
|
|
<script src="example.js"></script>
|
|
</body>
|
|
</html> |