source for sakino.kelbie.scot
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.
|
|
{{ define "main" }} <section class="author" style="display:none;"> <a rel="author" class="p-author h-card" rel="me" href="https://jon.kelbie.scot">{{ .Site.Params.Author }}<img src="/images/profile1.jpg"/></a> </section> <section class="exercise"> <h2>Goal: Become Fitter and Healthier</h2> {{ 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"><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 }}
|