diff --git a/view/html.go b/view/html.go
index c6b10403..41dcbebc 100644
--- a/view/html.go
+++ b/view/html.go
@@ -104,6 +104,12 @@ func (s *HTMLEngine) RootDir(root string) *HTMLEngine {
return s
}
+// FS change templates DIR
+func (s *HTMLEngine) FS(dirOrFS interface{}) *HTMLEngine {
+ s.fs = getFS(dirOrFS)
+ return s
+}
+
// Name returns the engine's name.
func (s *HTMLEngine) Name() string {
return s.name