mirror of
https://git.sr.ht/~seirdy/seirdy.one
synced 2024-11-10 08:12:11 +00:00
3200333424
- Shrink some excessive alt text - Remove some redundant links - Screenreaders that split elements up aren't just on touchscreens - Mention ChromeVox in list of screen readers - Move TOC higher in page - Spelling - Drop more unused classes
27 lines
1.6 KiB
HTML
27 lines
1.6 KiB
HTML
{{ define "main" }}
|
|
<div itemprop="blogPost mainEntity" itemscope itemtype="https://schema.org/BlogPosting">
|
|
<article class="h-entry hentry">
|
|
<header id="post-header">
|
|
<h1 itemprop="name headline" class="p-name entry-title">{{ .Title }}</h1>
|
|
<span class="dateline">
|
|
Posted <time itemprop="datePublished" class="dt-published published" datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}" title="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006-01-02" }}</time>
|
|
</span>
|
|
by {{- partial "indieweb-author.html" -}} on his <a rel="canonical" itemprop="mainEntityOfPage" class="u-url url" href="https://seirdy.one{{ .RelPermalink }}">Website</a>
|
|
{{ with .OutputFormats.Get "gemtext" -}}
|
|
and <a rel="syndication" class="u-syndication" href="{{replace .Permalink "/gemini" "" 1 | safeURL}}">Gemini capsule</a>
|
|
{{- end -}}
|
|
{{ if lt .Date .Lastmod -}}
|
|
<br>
|
|
Last updated <time itemprop="dateModified" class="dt-updated updated" datetime="{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}" title="{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Lastmod.Format "2006-01-02" }}</time>. <a href="{{ .Site.Params.logUrlPrefix }}content/{{ .File.Path }}">Changelog</a>
|
|
{{ end }}
|
|
<br>
|
|
<small>
|
|
<span itemprop="wordCount">{{ .WordCount }}</span> words, a <span itemprop="timeRequired" content="PT{{ .ReadingTime }}M">{{ .ReadingTime }} minute</span> read
|
|
</small>
|
|
</header>
|
|
<section class="e-content entry-content" itemprop="articleBody">
|
|
{{ partial "processed-content" . -}}
|
|
</section>
|
|
</article>
|
|
</div>
|
|
{{ end }}
|