Go to the source code of this file.
◆ base()
Definition at line 5 of file base.php.
6{
7
10 $renderer =
$DIC->ui()->renderer();
11
12
13 $content =
$f->listing()->descriptive(
14 array(
15 "Entry 1" => "Some text",
16 "Entry 2" => "Some more text",
17 )
18 );
19
20
21 $image =
$f->image()->responsive(
22 "./templates/default/images/HeaderIcon.svg",
23 "Thumbnail Example"
24 );
25
26
27 $card =
$f->card()->standard(
28 "Title",
29 $image
30 )->withSections(array(
31 $content,
32 ));
33
34
35 $deck =
$f->deck(array($card,$card,$card,$card,$card,
36 $card,$card,$card,$card));
37
38
39 return $renderer->render($deck);
40}
References $DIC, and Vendor\Package\$f.