summaryrefslogtreecommitdiff
path: root/web/template/status_info.tmpl
diff options
context:
space:
mode:
authorLibravatar Luca Matei Pintilie <luca@lucamatei.com>2025-03-01 13:06:08 +0100
committerLibravatar GitHub <noreply@github.com>2025-03-01 13:06:08 +0100
commite78e817057e01ce0cd2e3d532e4ca9ded8b88b73 (patch)
treee09ceb6d17ed8360447e93c8d39f09fbd3f93d4c /web/template/status_info.tmpl
parent[chore]: Bump github.com/go-jose/go-jose/v4 from 4.0.2 to 4.0.5 (#3831) (diff)
downloadgotosocial-e78e817057e01ce0cd2e3d532e4ca9ded8b88b73.tar.xz
[feature] add microformat support (#3848)
Related: #2959 Signed-off-by: Luca Matei Pintilie <luca@lucamatei.com>
Diffstat (limited to 'web/template/status_info.tmpl')
-rw-r--r--web/template/status_info.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/status_info.tmpl b/web/template/status_info.tmpl
index 7ac81a78a..2f81591a6 100644
--- a/web/template/status_info.tmpl
+++ b/web/template/status_info.tmpl
@@ -23,14 +23,14 @@
<div class="stats-item published-at text-cutoff">
<dt class="sr-only">Published</dt>
<dd>
- <time datetime="{{- .CreatedAt -}}">{{- .CreatedAt -}}</time>
+ <time class="dt-published" datetime="{{- .CreatedAt -}}">{{- .CreatedAt -}}</time>
</dd>
</div>
{{- if .EditedAt -}}
<div class="stats-item edited-at text-cutoff">
<dt class="sr-only">Edited</dt>
<dd>
- (edited <time datetime="{{- .EditedAt -}}">{{- .EditedAt -}}</time>)
+ (edited <time class="dt-updated" datetime="{{- .EditedAt -}}">{{- .EditedAt -}}</time>)
</dd>
</div>
{{ end }}