render('custom', ['variable' => 'value']); * @example {% render object layout 'custom' with { variable: 'value' } %} * * @param string|null $layout Layout to be used. * @param array $context Extra context given to the renderer. * * @return ContentBlockInterface|HtmlBlock Returns `HtmlBlock` containing the rendered output. * @api */ public function render(string $layout = null, array $context = []); }