view themes/bulma/projects.mustache @ 85:cf49ab595e2e default tip @

sciworkerd: avoid spawning several tasks
author David Demelier <markand@malikania.fr>
date Thu, 09 Mar 2023 10:43:48 +0100
parents 7a4112eec15b
children
line wrap: on
line source

<table class="table">
	<thead>
		<tr>
			<th>Name</th>
			<th>Description</th>
			<th>URL</th>
		</tr>
		<tbody>
			{{#projects}}
			<tr>
				<td><a href="/projects/{{name}}">{{name}}</a></td>
				<td>{{desc}}</td>
				<td><a href="{{url}}">{{url}}</a></td>
			</tr>
			{{/projects}}
		</tbody>
	</thead>
</table>