forked from cybrespace/pinafore
parent
a21541ce4b
commit
300a399655
|
@ -1,6 +1,7 @@
|
|||
<a rel="nofollow noopener"
|
||||
target="_blank"
|
||||
href="{{href}}"
|
||||
aria-label="{{ariaLabel || ''}}"
|
||||
class="{{className || ''}} {{showIcon ? 'external-link-with-icon' : ''}} {{normalIconColor ? 'normal-icon-color' : ''}}">
|
||||
<slot></slot>{{#if showIcon}}
|
||||
<svg class="external-link-svg">
|
||||
|
|
|
@ -2,7 +2,11 @@
|
|||
<Avatar :account size="big" />
|
||||
</div>
|
||||
<div class="account-profile-name">
|
||||
<ExternalLink href="{{account.url}}" showIcon="true" normalIconColor="true">
|
||||
<ExternalLink href="{{account.url}}"
|
||||
showIcon="true"
|
||||
normalIconColor="true"
|
||||
ariaLabel="{{account.display_name || account.acct}} (opens in new window)"
|
||||
>
|
||||
{{account.display_name || account.acct}}
|
||||
</ExternalLink>
|
||||
</div>
|
||||
|
|
|
@ -1,5 +1,9 @@
|
|||
<div class="status-details">
|
||||
<ExternalLink class="status-absolute-date" href="{{originalStatus.url}}" showIcon="true">
|
||||
<ExternalLink class="status-absolute-date"
|
||||
href="{{originalStatus.url}}"
|
||||
showIcon="true"
|
||||
ariaLabel="{{formattedDate}} (opens in new window)"
|
||||
>
|
||||
<time datetime={{createdAtDate}} title="{{formattedDate}}">{{formattedDate}}</time>
|
||||
</ExternalLink>
|
||||
<a class="status-favs-reblogs"
|
||||
|
|
Loading…
Reference in New Issue