diff --git a/ghost/admin/app/styles/layouts/mentions.css b/ghost/admin/app/styles/layouts/mentions.css index 022344e360..186806b8ef 100644 --- a/ghost/admin/app/styles/layouts/mentions.css +++ b/ghost/admin/app/styles/layouts/mentions.css @@ -115,4 +115,34 @@ top: 0; left: 0; border-radius: 0 2px 2px 0; +} + +.gh-mentions-list-cta { + display: flex; + flex-direction: column; + align-items: center; + padding: 4vw; +} + +.gh-mentions-list-cta .love-letter { + fill: var(--lightgrey); + width: 68px; + height: 68px; + margin-bottom: 20px; +} + +.gh-mentions-list-cta h4 { + color: var(--black); + text-align: center; + font-weight: 600; + margin-bottom: 8px; +} + +.gh-mentions-list-cta p { + max-width: 390px; + color: var(--midgrey); + text-align: center; + line-height: 1.45em; + margin: 0 0 20px; + padding: 0; } \ No newline at end of file diff --git a/ghost/admin/app/templates/mentions.hbs b/ghost/admin/app/templates/mentions.hbs index 3e4a795418..777c55f340 100644 --- a/ghost/admin/app/templates/mentions.hbs +++ b/ghost/admin/app/templates/mentions.hbs @@ -5,37 +5,46 @@
- {{#each this.mentionsList as |mention|}} -
- {{!-- TODO: show the title of your post instead of a link --}} - {{!-- TODO: link to the post analytics page of your post --}} -

Your post {{mention.target}} was mentioned in:

- - + {{/each}} + {{else}} +
+ {{svg-jar "email-love-letter" class="love-letter"}} +

No mentions yet

+

When other sites mention your posts, they'll appear here.

- {{/each}} + {{/if}}