Go to the source code of this file.
◆ base()
Definition at line 5 of file base.php.
References $DIC, and $f.
9 $f = $DIC->ui()->factory();
10 $renderer = $DIC->ui()->renderer();
12 $content =
$f->listing()->descriptive(
14 "Entry 1" =>
"Some text",
15 "Entry 2" =>
"Some more text",
19 $image =
$f->image()->responsive(
20 "./templates/default/images/HeaderIcon.svg",
24 $card =
$f->card()->standard(
"Title", $image);
27 return $renderer->render($card);