blob: 17a6a594fa54ddf9e5eb24921f5f64b9172602cc (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<section class="list" onclick="window.location.href = '/list/<?= $list->LID ?>'">
<section>
<div class="heading">
<h2>
<?= $list->Name ?>
</h2>
<a href="<?= '/user/' . $user->Username ?>" class="float-right">
<?= $user->Username ?>
</a>
</div>
<p>
<?= $list->Description ?>
</p>
</section>
<section name="itemButton" hidden>
<span><!-- Edit button --></span>
<span><!-- Delete button --></span>
</section>
</section>
|