Skip to content

Instantly share code, notes, and snippets.

@kargirwar
Last active October 28, 2017 08:27
Show Gist options
  • Save kargirwar/6481cfa350f7ea57770270de8364fb8f to your computer and use it in GitHub Desktop.
Save kargirwar/6481cfa350f7ea57770270de8364fb8f to your computer and use it in GitHub Desktop.
Amber example
import "github.com/eknkc/amber"
...
//path is the directory containing home.amber and header.amber
templates, err := amber.CompileDir(path, amber.DefaultDirOptions, amber.DefaultOptions)
//error handling
...
type temp struct {
Name string
}
func handler(w http.ResponseWriter, r *http.Request) {
.....
templates["home"].Execute(w, temp{Name: name})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment