Skip to content

Instantly share code, notes, and snippets.

@sthzg
Last active August 29, 2015 14:05
Show Gist options
  • Select an option

  • Save sthzg/813d7b4685e8579ddb0c to your computer and use it in GitHub Desktop.

Select an option

Save sthzg/813d7b4685e8579ddb0c to your computer and use it in GitHub Desktop.
Zotonic: Render template from controller
-module(controller_example).
-export([event/2]).
-include_lib("controller_html_helper.hrl").
html(Context) ->
Html = z_template:render("index.tpl", [{foo, 'bar'}, {bam, 1234}], Context),
z_context:output(Html, Context).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment