29 lines
1019 B
HTML
29 lines
1019 B
HTML
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<link rel="stylesheet" href="/style/sakura.css" />
|
|
<title>{info.filename}</title>
|
|
</head>
|
|
<body>
|
|
<table style="table-layout: fixed;">
|
|
<tr>
|
|
<td style="text-align: left; padding-top: 0; padding-bottom: 0;"><a href="{info.directUrl}/..">back</a></td>
|
|
<td style="text-align: center; padding-top: 0; padding-bottom: 0;">{currpage}/{totpage}</td>
|
|
<td style="text-align: right; padding-top: 0; padding-bottom: 0;">{#if currpage > 1}<a href="{prevuri}"><</a> {/if}{#if currpage < totpage}<a href="{nexturi}">></a>{/if}</td>
|
|
</tr>
|
|
</table>
|
|
<hr />
|
|
{#if currpage < totpage}<a href="{nexturi}">{/if}
|
|
{#if image != null}
|
|
<img style="position: absolute; left: 50%; transform: translate(-50%, 0);" src="{image}" />
|
|
{#else if video != null}
|
|
<video src="{video}" controls style="width: 100%"></video>
|
|
{/if}
|
|
{#if currpage < totpage}</a>{/if}
|
|
<hr />
|
|
</body>
|
|
</html>
|
|
|