Skip to content

Instantly share code, notes, and snippets.

@retorquere
Created July 14, 2019 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save retorquere/c435529f2352373cf7f4f4e2e471a593 to your computer and use it in GitHub Desktop.
Save retorquere/c435529f2352373cf7f4f4e2e471a593 to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title></title>
</head>
<body>
<table style="width: 100%" border="1">
<tbody>
{{#each creators}}
<tr>
{{#if name}}
<td colspan="2">{{name}}</td>
{{#else}}
<td>{{lastName}}</td>
<td>{{firstName}}</td>
{{/if}}
</tr>
{{/each}}
<tr>
<td colspan="2">{{title}}</td>
</tr>
<tr>
<td colspan="2">{{journal}}</td>
</tr>
</tbody>
</table>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment