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.
21 lines
972 B
21 lines
972 B
{{ define "main" }}
|
|
<section class="about">
|
|
<section class="h-feed">
|
|
<section class="latest_note"><h2>Latest notes</h2>
|
|
{{ range (first 3 (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>
|
|
<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 "2 Jan 2006 15:04 GMT" }}</time></a></span>
|
|
<section class="e-content">{{ .Content }}
|
|
</section>
|
|
<section class="info">
|
|
<span class="categories_span">{{ with .Page.Params.category }}Categories: {{ partial "taxonomy/categories.html" . }}{{ end }}</span><br/>
|
|
</section>
|
|
</article> {{ end }}
|
|
</section>
|
|
</section>
|
|
</section>
|
|
|
|
{{ end }}
|