Create a projects board display

This commit is contained in:
Nettika 2026-01-25 14:46:29 -08:00
parent 64e810d360
commit 38dbf10abe
No known key found for this signature in database
6 changed files with 164 additions and 89 deletions

View file

@ -7,6 +7,6 @@
[x] Create a `main.css` file in src. Use mvp.css as a starting point.
[x] Create a `project-card.js` file in src that creates a web component for displaying a project.
[x] Using a Rouille router, create `GET /main.css` and `GET /project-card.js` endpoints that returns the relevant files. Use the include_bytes! macro.
[ ] Create a `GET /projects` endpoint. Using Maud for markup generation, have this endpoint return an HTML page that shows all projects. Each project should be a `project-card` web component. Keep the page simple: no title or any buttons currently.
[x] Create a `GET /projects` endpoint. Using Maud for markup generation, have this endpoint return an HTML page that shows all projects. Each project should be a `project-card` web component. Keep the page simple: no title or any buttons currently.
[ ] Create a `POST /projects` endpoint that accepts URL encoded data and creates a new project.
[ ] Create a `GET /new-project` endpoint that returns a HTML page with a project creation form. Keep it simple.