18 lines
314 B
Plaintext
18 lines
314 B
Plaintext
package view
|
|
|
|
import (
|
|
"stevenlr.com/timer/model"
|
|
"fmt"
|
|
)
|
|
|
|
templ timer(t model.Timer) {
|
|
<p><a href={ templ.URL(fmt.Sprintf("/timer/%s", t.Id)) }>{ t.Name }</a></p>
|
|
}
|
|
|
|
templ TimersList(timers []model.Timer) {
|
|
<h1>Timers</h1>
|
|
for _, t := range timers {
|
|
@timer(t)
|
|
}
|
|
}
|