aboutsummaryrefslogtreecommitdiff
path: root/app/views/profile/extern.php
blob: 9524837d8d11085c06c2326229d109d64e34a80a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<div class="responsive-visible">
    <img src="<?= htmlReady($user['avatar_url'] ?: Avatar::getNobody()->getURL(Avatar::NORMAL)) ?>">
</div>

<? if (Config::get()->OERCAMPUS_ENABLED && $user['data']['description']) : ?>
    <article class="studip">
        <header>
            <h1><?= _('Beschreibung für den OER Campus') ?></h1>
        </header>
        <section>
            <?= nl2br(htmlReady($user['data']['description'])) ?>
        </section>
    </article>
<? endif ?>
<?