feat: remove space betwee date and state
This commit is contained in:
parent
4a421db2b8
commit
ade0af5ad5
1 changed files with 3 additions and 2 deletions
|
@ -14,8 +14,9 @@ const publishedOn = now.publishedOn === '' ? now.publishDate : now.publishedOn
|
|||
<h1><span class="text-gradient">What I'm doing now</span></h1>
|
||||
<p>
|
||||
<em
|
||||
>Updated on <time datetime="{now.publishDate}">{publishedOn}</time>
|
||||
{now.publishState ? `, ${now.publishState}` : ''}</em
|
||||
>Updated on <time datetime="{now.publishDate}">{publishedOn}</time>{
|
||||
now.publishState ? `, ${now.publishState}` : ''
|
||||
}</em
|
||||
>
|
||||
</p>
|
||||
<Fragment set:html={nowHtml} />
|
||||
|
|
Loading…
Reference in a new issue