website-old/themes/ch0ccy-in-the-nineties/layouts/_default/single.html

23 lines
1,022 B
HTML
Raw Normal View History

2023-03-13 14:34:18 -07:00
{{ define "main" }}
<section class="section">
2024-02-01 14:37:30 -08:00
<article class="h-entry">
2023-03-13 14:34:18 -07:00
<div class="blog__container">
2024-02-01 14:37:30 -08:00
<h1 class="post-title p-name" style="font-size: xx-large;">{{ .Title }}</h1>
<div class="blog__info">
2024-12-05 13:04:30 -08:00
<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> |
2023-03-13 14:34:18 -07:00
{{ .ReadingTime }} {{ if eq .ReadingTime 1 }} minute {{ else }} minutes {{ end }} read
</p>
</div>
2024-02-01 14:37:30 -08:00
<div class="post-content clearfix e-content content" itemprop="articleBody">
2023-03-13 14:34:18 -07:00
{{ .Content }}
</div>
</div>
</article>
</section>
2024-02-01 15:05:30 -08:00
<hr>
<h2>🤔 Thoughts...</h2>
2024-03-18 19:37:17 -07:00
<p>You can comment using <a href="https://indieweb.org/Webmention">webmentions</a></p>
<hr>
2024-02-01 15:05:30 -08:00
<div id="webmentions"></div>
2024-02-01 14:37:30 -08:00
{{ end }}