22 lines
1,022 B
HTML
22 lines
1,022 B
HTML
{{ define "main" }}
|
|
<section class="section">
|
|
<article class="h-entry">
|
|
<div class="blog__container">
|
|
<h1 class="post-title p-name" style="font-size: xx-large;">{{ .Title }}</h1>
|
|
<div class="blog__info">
|
|
<span>Published at <a class="u-url" href="{{ .Permalink }}"><time class="dt-published">{{ .PublishDate.Format "January 2, 2006" }}</time></a> by <span class="p-author">{{ .Params.author | default .Site.Params.Author.name }}</span></span> |
|
|
{{ .ReadingTime }} {{ if eq .ReadingTime 1 }} minute {{ else }} minutes {{ end }} read
|
|
</p>
|
|
</div>
|
|
<div class="post-content clearfix e-content content" itemprop="articleBody">
|
|
{{ .Content }}
|
|
</div>
|
|
</div>
|
|
</article>
|
|
</section>
|
|
<hr>
|
|
<h2>🤔 Thoughts...</h2>
|
|
<p>You can comment using <a href="https://indieweb.org/Webmention">webmentions</a></p>
|
|
<hr>
|
|
<div id="webmentions"></div>
|
|
{{ end }}
|