1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<menu>@menu
<a href="/media">new uploads</a>
<a href="/media/unfiled">unfiled</a>
<hr>
@folders
<a href="/media/all">all uploads</a>
<a href="/media/kind/img">all images</a>
<a href="/media/kind/vid">all videos</a>
<a href="/media/kind/txt">all text files</a>
<a href="/media/king/misc">all others</a>
</menu>
<div class="dir">
@directory
</div>
<div class="gallery">
@images
</div>
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<menu>@menu
<a href="@pfx/media">new uploads</a>
<a href="@pfx/media/unfiled">unfiled</a>
<hr>
@folders
<a href="@pfx/media/all">all uploads</a>
<a href="@pfx/media/kind/img">all images</a>
<a href="@pfx/media/kind/vid">all videos</a>
<a href="@pfx/media/kind/txt">all text files</a>
<a href="@pfx/media/kind/misc">all others</a>
</menu>
<div class="dir">
@directory
</div>
<div class="gallery">
@images
</div>
|