9 lines
180 B
Go
9 lines
180 B
Go
|
|
package snippets
|
||
|
|
|
||
|
|
import "github.com/maddalax/htmgo/framework/h"
|
||
|
|
|
||
|
|
func HackerNewsExample(ctx *h.RequestContext) *h.Page {
|
||
|
|
SetSnippet(ctx, &HackerNewsSnippet)
|
||
|
|
return Index(ctx)
|
||
|
|
}
|