goview icon indicating copy to clipboard operation
goview copied to clipboard

Goview is a lightweight, minimalist and idiomatic template library based on golang html/template for building Go web application.

Results 16 goview issues
Sort by recently updated
recently updated
newest added

Hi, I'm working on a small Go project and would like to organize my HTML files properly. For example, if there's a dashboard screen with a form and a table,...

I set the view engine DisableCache false , but I also need dynamic the clear the cache. can you support a method like this ? func (e *ViewEngine) ClearAllCache() {...

Hi. I have such a file structure, index.html the main one, css styles and scripts are connected in it ![image](https://user-images.githubusercontent.com/15386101/161597724-20da3de6-5a0e-4cb3-afde-1ed4ef23911f.png) the data that differ I have taken out in partials,...

Is there a plan to support `text/templates`, so no need to escape html

OS: Windows 10 Pro 64 bit go version: go1.15.4 windows/amd64 Apologies if this is a GitHub issue vs. something specific to this repository. I'm still learning how the go module...

I see issue #9 that you have support on go.rice https://github.com/foolin/goview/issues/9 do you have plan to support go embeded or do you have example to do it? https://golang.org/pkg/embed/

How hard would it be to add a `extends` function so we can have "multiple" masters, I need to have some pages without footer and header and right now it's...

## Synopsis There are no examples for if/else (should this parser even support it.)

## Synopsis There are no examples for range/each. ```handlebars {{range $e := .providers}} {{ucfirst $e}} {{end}} ``` https://golang.org/pkg/text/template/

1、my page was dynanic changed , I need to clear tplMap cache. Is there a good way for me to solve this problem?