Arief Karfianto
Arief Karfianto
When we refer to [existing ](https://github.com/josephspurrier/gowebapp/blob/3603a3b1db0e26ea61c84448f234342b2a241f52/template/base.tmpl#L32)`base.tmpl` ``` {{CSS "static/css/bootstrap.min.css"}} {{CSS "//fonts.googleapis.com/css?family=Open+Sans:300,400,bold,italic"}} {{CSS "static/css/global.css"}} ``` it calls static assets served by [static controller](https://github.com/josephspurrier/gowebapp/blob/embedded-templates/app/controller/static.go) Should I make any change in the template...
I've done it by creating a new file `api.go` ``` func ApiRoutes(r *httprouter.Router) { // Your routes } ``` in existing `route.go` call it just before `return` ``` // Call...