udpate
This commit is contained in:
parent
6966cb7392
commit
6cdc145809
|
@ -20,6 +20,8 @@ func Execute(w http.ResponseWriter, r *http.Request, file string) (int, error) {
|
|||
}
|
||||
|
||||
file, _ := ioutil.ReadFile(file)
|
||||
|
||||
// render the template here
|
||||
w.Write([]byte(string(file)))
|
||||
}
|
||||
|
||||
|
|
6
hugo.go
6
hugo.go
|
@ -3,12 +3,10 @@ package hugo
|
|||
import (
|
||||
"net/http"
|
||||
|
||||
"github.com/spf13/hugo/commands"
|
||||
|
||||
"github.com/hacdias/caddy-hugo/routing"
|
||||
"github.com/mholt/caddy/config/setup"
|
||||
"github.com/mholt/caddy/middleware"
|
||||
|
||||
"github.com/hacdias/caddy-hugo/routing"
|
||||
"github.com/spf13/hugo/commands"
|
||||
)
|
||||
|
||||
// Setup function
|
||||
|
|
|
@ -39,5 +39,4 @@ func Route(w http.ResponseWriter, r *http.Request) (int, error) {
|
|||
}
|
||||
|
||||
return 200, nil
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue