jon.kelbie.scot website
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

16 lines
839 B

{{ define "main" }}
<section class="exercise">
{{ range sort .Site.Data.workouts "date" "desc"}}
<section class="exercise_grid">
<span class="type"><b>Type</b><br/>{{ .type | humanize }}</span>
<span class="exdate"><b>Date</b><br/>{{ dateFormat "2 Jan 2006" .date }}</span>
<span class="comment"><b>Comment</b><br/>{{ .comment | humanize }}</span>
<span class="image"><b>Image</b><br/><a href="{{ .image }}" class="u-url"><img src="{{ .thumb }}" title="{{ .comment }}" alt="route map of outdoor exercise from fitotrack app" /></a></span>
<span class="distance"><b>Distance</b><br/>{{ .distance }}</span>
<span class="duration"><b>Duration</b><br/>{{ .duration }}</span>
<span class="pace"><b>Pace</b><br/>{{ .pace }}</span>
<span class="calories"><b>Calories burned</b><br/>{{ .calories }}</span>
</section>
{{ end }}
</section>
{{ end }}