2023-01-17 15:16:18 +03:00
|
|
|
<section class="gh-canvas">
|
|
|
|
<GhCanvasHeader class="gh-canvas-header">
|
|
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
|
|
Mentions
|
|
|
|
</h2>
|
|
|
|
</GhCanvasHeader>
|
2023-01-18 19:42:36 +03:00
|
|
|
<section>
|
2023-01-24 00:42:19 +03:00
|
|
|
{{!-- TODO: Invert logic --}}
|
|
|
|
{{#if this.mentionsList}}
|
|
|
|
{{#each this.mentionsList as |mention|}}
|
|
|
|
<div class="gh-mention-card">
|
|
|
|
{{!-- TODO: show the title of your post instead of a link --}}
|
|
|
|
{{!-- TODO: link to the post analytics page of your post --}}
|
|
|
|
<p class="gh-mention-your-post">Your post <a href={{mention.target}} class="gh-mention-your-post-link">{{mention.target}}</a> was mentioned in:</p>
|
|
|
|
<a href="{{mention.source}}" class="gh-mention-container" rel="noreferrer noopener" target="_blank">
|
|
|
|
<div class="gh-mention-content">
|
|
|
|
<h3 class="gh-mention-title">{{if mention.sourceTitle mention.sourceTitle mention.target}}</h3>
|
|
|
|
{{#if mention.sourceExcerpt}}
|
|
|
|
<p class="gh-mention-description">{{mention.sourceExcerpt}}</p>
|
2023-01-20 01:38:05 +03:00
|
|
|
{{/if}}
|
2023-01-24 00:42:19 +03:00
|
|
|
<div class="gh-mention-metadata">
|
|
|
|
{{#if mention.sourceFavicon}}
|
|
|
|
<img src="{{mention.sourceFavicon}}" alt="{{mention.sourceSiteTitle}}" class="gh-mention-icon">
|
|
|
|
{{/if}}
|
|
|
|
{{#if mention.sourceSiteTitle}}
|
|
|
|
<span class="gh-mention-publisher">{{mention.sourceSiteTitle}}</span>
|
|
|
|
{{/if}}
|
|
|
|
{{#if mention.sourceAuthor}}
|
|
|
|
<span class="gh-mention-author">{{mention.sourceAuthor}}</span>
|
|
|
|
{{/if}}
|
|
|
|
<span class="gh-mention-timestamp">{{gh-format-post-time mention.timestamp}}</span>
|
|
|
|
</div>
|
2023-01-19 15:50:47 +03:00
|
|
|
</div>
|
2023-01-24 00:42:19 +03:00
|
|
|
{{#if mention.sourceFeaturedImage}}
|
|
|
|
<div class="gh-mention-thumbnail">
|
|
|
|
<img src="{{mention.sourceFeaturedImage}}" alt="{{mention.sourceTitle}}">
|
|
|
|
</div>
|
|
|
|
{{/if}}
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
{{/each}}
|
|
|
|
{{else}}
|
|
|
|
<div class="gh-mentions-list-cta">
|
|
|
|
{{svg-jar "email-love-letter" class="love-letter"}}
|
|
|
|
<h4>No mentions yet</h4>
|
|
|
|
<p>When other sites mention your posts, they'll appear here.</p>
|
2023-01-19 15:50:47 +03:00
|
|
|
</div>
|
2023-01-24 00:42:19 +03:00
|
|
|
{{/if}}
|
2023-01-18 19:42:36 +03:00
|
|
|
</section>
|
2023-01-17 15:16:18 +03:00
|
|
|
</section>
|