Skip to content

Instantly share code, notes, and snippets.

@IndianGuru
Created January 19, 2016 04:07
Show Gist options
  • Save IndianGuru/a25dc08d3102eaa26a49 to your computer and use it in GitHub Desktop.
Save IndianGuru/a25dc08d3102eaa26a49 to your computer and use it in GitHub Desktop.
Using explicitly defined templates
func process(w http.ResponseWriter, r *http.Request) {
t, _ := template.ParseFiles("layout.html")
t.ExecuteTemplate(w, "layout", "")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment