Documentation ¶
Index ¶
Constants ¶
View Source
const ( OfKey = "contentOf" ForKey = "contentFor" DefaultKey = "default" )
Keys to be used in templates for the functions in this package.
Variables ¶
This section is empty.
Functions ¶
func ContentFor ¶
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> <% } %>
func ContentOf ¶
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"}) %>
func WithDefault ¶
func WithDefault(key string, defaultValue interface{}, help hctx.HelperContext) interface{}
WithDefault returns the key if exists, otherwise it returns defaultValue passed.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.