more additions.

This commit is contained in:
Brian McGonagill 2026-02-05 11:16:16 -06:00
parent dd7e4a4933
commit e8649038ad
5 changed files with 82 additions and 33 deletions

View file

@ -0,0 +1,19 @@
<template name="logbook">
<h1>Logbook</h1>
<div class="grid">
{{#each workouts}}
<div>
<article class="clickable" id="{{_id}}">
<div class="grid">
<div>
<h2>{{routineName}}</h2>
</div>
<div>
<h3>{{workoutCount}} {{#if $eq workoutCount 1}}exercise{{else}}exercises{{/if}}</h3>
</div>
</div>
</article>
</div>
{{/each}}
</div>
</template>