feat: use <time> element

This commit is contained in:
Daniel Roe 2022-11-25 15:00:50 +00:00
parent c8c4972693
commit ae2ce85bcc
No known key found for this signature in database
GPG key ID: 22D5008E4F5D9B55
2 changed files with 3 additions and 3 deletions

View file

@ -17,6 +17,6 @@ const buildTimeAgo = useTimeAgo(buildTime)
</div>
<a cursor-pointer hover:underline @click="openPreviewHelp">Show intro</a>
<div>A Mastodon client made with 💛</div>
<div>Built <span :title="buildTime">{{ buildTimeAgo }}</span> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a></div>
<div>Built <time :datetime="buildTime" :title="buildTime">{{ buildTimeAgo }}</time> · <a href="https://github.com/elk-zone/elk" target="_blank">GitHub</a></div>
</div>
</template>