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.
 
 
 
 

75 lines
5.8 KiB

{{ define "main" }}
<section class="about">
<section class="h-feed">
<section class="latest_note"><h2>Latest note</h2>
{{ range (first 1 (where .Site.RegularPages "Type" "=" "note")) }}
<article class="index-note h-entry entry">
<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="e-content">{{ .Content }}
</section>
<section class="info">
{{ if eq .Type "article" }}
<span class="blogs_span">{{ with .Page.Params.Blog }}Blog: {{ partial "taxonomy/blog.html" . }}{{ end }}</span><span class="info-date"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "02/01/2006 15:04 GMT" }}</time></span><br/>
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><span class="reading-time">{{ .ReadingTime }}-minute read</span><br/>
<span class="tags_span">{{ with .Page.Params.tag }}Tags: {{ partial "taxonomy/tags.html" . }}{{ end }}</span>
{{ else }}
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><span class="info-date"><a href="{{ .Permalink }}" class="u-url"><time class="dt-published" datetime="{{ .Date.Format "2 Jan 2006 15:04 GMT" }}">{{ .Date.Format "02/01/2006 15:04 GMT" }}</time></a></span><br/>
{{ end }}
</section>
</article> {{ end }}
</section>
<section class="latest_articles"><h2>Latest articles</h2>
{{ range (first 3 (where .Site.RegularPages "Type" "=" "article")) }}
<article class="index-article h-entry entry"><a class="u-url" href="{{ .Permalink }}" title="{{ .Title }}">
{{ range first 1 .Page.Params.image }} <img class="banner" src="{{ replace . "images" "images/300" }}"/>{{ end }}<span class="p-name entry-title">{{ .Title }}</span>
<section class="e-content">{{ .Description }}</section>
</a></article>{{ end }}</section>
<section class="latest_photos"><h2>Latest photos</h2>
{{ range (first 3 (where .Site.RegularPages "Type" "=" "photo")) }}
<article class="index-photo h-entry entry"><a class="u-url" href="{{ .Permalink }}">
<section class="e-content">
{{ if eq .Type "photo"}}
<section class="photos">
{{ $summary := .Content }}
{{ range first 1 .Page.Params.Photo }}
{{ if isset . "value" }}
<img class="u-photo thumb" src="{{ replace .value "800." "300."}}" title="{{$summary}}" alt="{{ .alt }}"/>
{{ else }}
<img class="u-photo thumb" src="{{ replace . "800." "300."}}" title="{{$summary}}" alt="Alt not yet added, will fix!"/>
{{ end }}
{{end}}
</section>
{{end}}
</section>
</a></article>{{ end }}</section>
<h2>Currently</h2>
<section class="index-note">
<b><i class="fa fa-graduation-cap" aria-hidden="true" target="_blank"></i> Studying: <a href="https://www.hw.ac.uk/documents/pams/202122/B91FI_202122.pdf" class="u-url" title="Currently studying: B91FI Filtation and Packaging">B91FI Filtration and Packaging</a></b> @ Heriot Watt University, a course from the MSc in Brewing and Distilling programme.<br/><br/>
<b><i class="fa fa-beer" aria-hidden="true"></i> Fermenting: <a href="https://brewdogrecipes.com/recipes/ab04" class="u-url" target="_blank" title="Currently fermenting: Alice Porter">Alice Porter</a></b> by Brewdog, a small timeout from my brown ale experiments as a birthday treat.<br/><br/>
<b><i class="fa fa-calendar" aria-hidden="true"></i> Planning: <a href="https://www.beeradvocate.com/beer/profile/12142/52084/" class="u-url" target="_blank" title="Currently planning: 80/-">Williams Bros 80/- (sort of)</a></b> for my next brew, will be a variation on a previous recipe with a grain adjustment.<br/><br/>
<b><i class="fa fa-book" aria-hidden="true" target="_blank"></i> Reading: <a href="https://www.taylorfrancis.com/books/handbook-brewing-graham-stewart-inge-russell-anne-anstruther/e/10.1201/9781351228336" class="u-url" title="Currently reading: Handbook of Brewing">Handbook of Brewing</a></b> by Graham G. Stewart, Inge Russel and Anne Anstruther.<br/><br/>
<b><i class="fa fa-television" aria-hidden="true"></i> Watching: <a href="https://en.wikipedia.org/wiki/Borgen_(TV_series)" class="u-url" target="_blank" title="now watching: Borgen">Borgen</a></b> a Danish political drama.<br/><br/>
<b><i class="fa fa-gamepad" aria-hidden="true"></i> Playing: <a href="https://www.valheimgame.com/" class="u-url" target="_blank" title="Currently playing: Valheim">Valheim</a></b> a Viking inspired survival game.</section>
<h2>Latest Workout</h2>
<section class="index_exercise">
{{ range first 1 (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><br/><br/>
<a href="https://brid.gy/publish/mastodon"></a>
</section>
</section>
{{ end }}