23 lines
661 B
Plaintext
23 lines
661 B
Plaintext
package pages
|
|
|
|
import "michaelthomson.dev/mthomson/go-todos-app/templates/shared"
|
|
import "michaelthomson.dev/mthomson/go-todos-app/templates/partials"
|
|
import "michaelthomson.dev/mthomson/go-todos-app/models"
|
|
|
|
templ Home(todos []models.Todo) {
|
|
@shared.Page("Todos") {
|
|
<div class="flex flex-col">
|
|
<h1 class="text-3xl">Todos</h1>
|
|
<form hx-post="/todos" hx-target="#todos" hx-swap="beforeend">
|
|
<input name="name" type="text" class="border border-black" />
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
<div id="todos">
|
|
for _, todo := range todos {
|
|
@partials.Todo(todo)
|
|
}
|
|
</div>
|
|
</div>
|
|
}
|
|
}
|