2022-09-26 14:43:49 -07:00
|
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ partial "hero.html" . }}
|
|
|
|
|
|
|
|
<div class="container">
|
2022-10-01 22:15:39 -07:00
|
|
|
<br>
|
|
|
|
|
|
|
|
<div class="columns">
|
2022-09-26 14:43:49 -07:00
|
|
|
|
2022-10-01 22:15:39 -07:00
|
|
|
<div class="column">
|
|
|
|
<img src="{{ .Params.thumbnail }}" />
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="column">
|
|
|
|
<div class="content">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h4 class="subtitle" id="date"> Posted: {{ .Date.Format "Mon Jan 2, 2006" }} </h4>
|
|
|
|
<h5 class="subtitle" id="wordcount"> Word Count: {{ .WordCount }} Words </h5>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
<h2 class="title">Tags</h2>
|
2022-09-26 14:43:49 -07:00
|
|
|
|
2022-10-01 22:15:39 -07:00
|
|
|
<div class="buttons">
|
|
|
|
{{ with .Params.tags }}
|
|
|
|
|
|
|
|
{{ range . }}
|
|
|
|
<button class="button">
|
|
|
|
<a href="{{ "tags" | absURL }}/{{ . | urlize }}">{{ . }}</a>
|
|
|
|
</button>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2022-09-26 14:43:49 -07:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
{{ partial "footer.html" . }}
|