Method: (RENDER TEMPLATE-COMPONENT)

Documentation

Render a template based component. Calls the component's template. The name of the template is the value returned by the generic function template-component.template-name, the template will be rendered in the environment returned by the generic function template-component-environment.

Source

(defmethod render ((component template-component))
  "Render a template based component.

Calls the component's template. The name of the template is the
value returned by the generic function
template-component.template-name, the template will be rendered
in the environment returned by the generic function
template-component-environment."
  (render-template *context*
                   (template-component.template-name component)
                   (template-component-environment component)))
Source Context