mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
59e7b720a2
refs https://github.com/TryGhost/Team/issues/1598 - added `<GhPostBookmark>` card for displaying a bookmark card style representation of a post - updated designsandbox route to include it for easier styling without needing to constantly go through the publish flow to see changes whilst styling - updated publish flow complete step to render a bookmark card if a post/page was published - added `{{post-author-names}}` helper so the author name concatenation logic can be re-used across the posts list and bookmark component
19 lines
819 B
Handlebars
19 lines
819 B
Handlebars
<div class="gh-post-bookmark flex flex-row">
|
|
{{#if @post.featureImage}}
|
|
<div class="gh-post-bookmark-image">
|
|
<img src={{@post.featureImage}} alt="" role="presentation" />
|
|
</div>
|
|
{{/if}}
|
|
<div class="flex flex-column">
|
|
<div class="gh-post-bookmark-title">{{@post.title}}</div>
|
|
<div class="gh-post-bookmark-text">{{@post.excerpt}}</div>
|
|
<div class="gh-post-bookmark-details flex flex-row">
|
|
{{#if @post.primaryAuthor.profileImage}}
|
|
<div class="gh-post-bookmark-author-image">
|
|
<img src={{@post.primaryAuthor.profileImage}} alt="" role="presentation" />
|
|
</div>
|
|
{{/if}}
|
|
<div class="gh-post-bookmark-authors">{{post-author-names @post}}</div>
|
|
</div>
|
|
</div>
|
|
</div> |