view themes/bulma/projects.mustache @ 58:7a4112eec15b

scid: add /projects page
author David Demelier <markand@malikania.fr>
date Wed, 17 Aug 2022 19:45:32 +0200
parents
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>