mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-20 09:22:49 +03:00
21 lines
932 B
Handlebars
21 lines
932 B
Handlebars
<div class="gh-post-bookmark-container">
|
|
<div class="gh-post-bookmark">
|
|
{{#if @post.featureImage}}
|
|
<div class="gh-post-bookmark-image">
|
|
<img src={{@post.featureImage}} alt="" role="presentation" />
|
|
</div>
|
|
{{/if}}
|
|
<div class="gh-post-bookmark-content">
|
|
<div class="gh-post-bookmark-title">{{@post.title}}</div>
|
|
<div class="gh-post-bookmark-text truncate">{{@post.excerpt}}</div>
|
|
<div class="gh-post-bookmark-details">
|
|
{{#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>
|
|
</div> |