blob: a010ff91cc55cc6b030c17efb10447a4f29dfd2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<div class="notification">
<div class="notifImage">
<?php if ($imageUrl != null): ?>
<?php if ($imageLink != null): ?>
<a href="<?= $imageLink ?>">
<?php endif; ?>
<img src="<?= $imageUrl ?>">
<?php if ($imageLink != null): ?>
</a>
<?php endif; ?>
<?php endif; ?>
</div>
<div class="notifContent">
<?php if ($titleLink != null): ?>
<a href="<?= $titleLink ?>">
<?php endif; ?>
<span class="title"><?= htmlspecialchars($title) ?></span>
<?php if ($titleLink != null): ?>
</a>
<?php endif; ?>
<span class="body"><?= htmlspecialchars($body) ?></span>
</div>
</div>
|