9 $f = $DIC->ui()->factory();
10 $renderer = $DIC->ui()->renderer();
12 $icon =
$f->icon()->standard(
'crs',
'Course')->withIsOutlined(
true);
15 $f->button()->shy(
"Go to Course",
"#"),
16 $f->button()->shy(
"Go to Portfolio",
"#"),
17 $f->divider()->horizontal(),
18 $f->button()->shy(
"ilias.de",
"http://www.ilias.de")
21 $dropdown =
$f->dropdown()->standard($items);
24 $content =
$f->listing()->descriptive(
26 "Entry 1" =>
"Some text",
27 "Entry 2" =>
"Some more text",
31 $image =
$f->image()->responsive(
32 "./templates/default/images/HeaderIcon.svg",
36 $card =
$f->card()->repositoryObject(
43 )->withCertificateIcon(
53 $deck =
$f->deck(array($card,$card,$card,$card,$card,
54 $card,$card,$card,$card))->withNormalCardsSize();
57 return $renderer->render($deck);