blob: 631666901918b927f23ebf140d78383b8e099940 (
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="<?= '/profile/' . $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>
|