Files
gabarit/test/gabarit_html_SUITE_data/page_complex.erml
niamtokik e22bb03cb4 update
2023-11-29 19:59:29 +00:00

20 lines
582 B
Plaintext

%%%===================================================================
%%% A more complex page calling other tag.
%%%===================================================================
{html, [
{head, [
{title, <<"Lorem Ipsum">>}
]},
{body, [
% calling a module
{'div', #{id => "module"}, [
{apply, {gabarit_test_module, random_paragraph, []}}
]},
% include a raw text
% including a template with variable
{'div', #{id => "template"}, [
{include_template, "quote_template", #{quote => <<"test">>, author => <<"test">>}}
]}
]}
]}.