Migrate from templates to Gomponents (#103)
This commit is contained in:
parent
0bf9ab7189
commit
051d032038
104 changed files with 2768 additions and 2824 deletions
19
pkg/ui/models/search_result.go
Normal file
19
pkg/ui/models/search_result.go
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
package models
|
||||
|
||||
import (
|
||||
. "maragu.dev/gomponents"
|
||||
. "maragu.dev/gomponents/html"
|
||||
)
|
||||
|
||||
type SearchResult struct {
|
||||
Title string
|
||||
URL string
|
||||
}
|
||||
|
||||
func (s *SearchResult) Render() Node {
|
||||
return A(
|
||||
Class("panel-block"),
|
||||
Href(s.URL),
|
||||
Text(s.Title),
|
||||
)
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue