blob: 130378e15b9f0b4460e3033f812c30c717ffb14b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<div class="blubber_course_info indented">
<div class="headline">
<a href="<?= URLHelper::getLink("dispatch.php/institute/overview", ['auswahl' => $institute->getId()]) ?>"
class="avatar"
style="background-image: url('<?= InstituteAvatar::getAvatar($institute->getId())->getURL(Avatar::MEDIUM) ?>');"></a>
</a>
<div class="side">
<a href="<?= URLHelper::getLink("dispatch.php/institute/overview", ['auswahl' => $institute->getId()]) ?>">
<?= htmlReady($institute->name) ?>
</a>
</div>
</div>
</div>
<?= $this->render_partial('blubber/disable-notifications', compact('thread', 'unfollowed')) ?>
|