blob: 9aa72dedf1f598afd423ed79206c04c9befa1574 (
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
26
|
<!-- Start sidebar -->
<aside id="sidebar" aria-label="<?= _('Seitenleiste') ?>">
<div class="sidebar-image <? if ($avatar) echo 'sidebar-image-with-context'; ?>">
<? if ($avatar) : ?>
<div class="sidebar-context">
<? if ($avatar->is_customized()) : ?>
<a href="<?= htmlReady($avatar->getURL(Avatar::NORMAL)) ?>"
data-lightbox="sidebar-avatar"
data-title="<?= htmlReady(PageLayout::getTitle()) ?>">
<? endif ?>
<?= $avatar->getImageTag(Avatar::MEDIUM) ?>
<? if ($avatar->is_customized()) : ?>
</a>
<? endif ?>
</div>
<? endif ?>
<div class="sidebar-title">
<?= htmlReady($title) ?>
</div>
</div>
<? foreach ($widgets as $index => $widget): ?>
<?= $widget->render(['base_class' => 'sidebar']) ?>
<? endforeach; ?>
</aside>
<!-- End sidebar -->
|