view html/index.html @ 74:67b3d13a5035

pasterd: make own HTML code for good
author David Demelier <markand@malikania.fr>
date Wed, 15 Mar 2023 19:34:00 +0100
parents 6792975da9a0
children 52029a52a385
line wrap: on
line source

			<h1>Recent pastes</h1>

			<table>
				<thead>
					<tr>
						<th>Name</th>
						<th>Author</th>
						<th>Language</th>
						<th>Date</th>
						<th>Expires in</th>
					<tr>
				</thead>
				<tbody>
					{{#pastes}}
					<tr>
						<td><a href="/paste/{{id}}">{{title}}</a></td>
						<td>{{author}}</td>
						<td>{{language}}</td>
						<td>{{date}}</td>
						<td>{{expiration}}</td>
					</tr>
					{{/pastes}}
				</tbody>
			</table>