import "github.com/gobuffalo/helpers/content"
const ( OfKey = "contentOf" ForKey = "contentFor" )
Keys to be used in templates for the functions in this package.
func ContentFor(name string, help hctx.HelperContext)
ContentFor stores a block of templating code to be re-used later in the template via the contentOf helper. An optional map of values can be passed to contentOf, which are made available to the contentFor block.
<% contentFor("buttons") { %> <button>hi</button> <% } %>
ContentOf retrieves a stored block for templating and renders it. You can pass an optional map of fields that will be set.
<%= contentOf("buttons") %> <%= contentOf("buttons", {"label": "Click me"}) %>
New returns a map of the helpers within this package.
Package content imports 3 packages (graph) and is imported by 1 packages. Updated 2019-07-05. Refresh now. Tools for package owners.