blob: 0304aca76d5befcd7f8556ed792f2953943a6f7d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<div style="display: flex; width: 100%; margin-bottom: 20px;">
<div>
<img class="avatar-normal" src="<?= htmlReady($user['avatar_url']) ?>">
</div>
<div style="width: 100%; padding-left: 10px;">
<h1><?= htmlReady($user['name']) ?></h1>
<div>
<?= formatReady($user['data']['description']) ?>
</div>
</div>
</div>
<? if (count($materials)) : ?>
<section class="contentbox">
<header>
<h1>
<?= Icon::create('service') ?>
<?= _('Lernmaterialien') ?>
</h1>
</header>
<section>
<?= $this->render_partial("oer/mymaterial/_material_list.php", ['materialien' => $materials]) ?>
</section>
</section>
<? endif ?>
|