Lindenii Project Forge
Login

go-htmpl

Simple HTML templating engine

Warning: Due to various recent migrations, viewing non-HEAD refs may be broken.

/example/test.htmpl (raw)

{{ define httpHandleIndex(w http.ResponseWriter, r *http.Request) }}
{!
	var title = "Index";
!}
<!DOCTYPE html>
<html lang="en">
<head>
</head>
<body>
	<h1>{{ title }}</h1>
</body>
</html>
{{ end }}