0

如何在首页顶部显示精选帖子?其次是剩余的帖子。

目前,它们显示在分页每一页的顶部。

这是我的loop.hbs:

{{! Previous/next page links - only displayed on page 2+ }}
<div class="extra-pagination inner">
    {{pagination}}
</div>

{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
{{#if featured}}
<article class="{{post_class}} featured">
    <header class="post-header">
        <h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
    </header>
    <section class="post-excerpt">
        <p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">&raquo;</a></p>
    </section>
    <footer class="post-meta">
        {{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="    {{author.name}}" nopin="nopin" />{{/if}}    
        {{author}}    
        {{tags prefix="on"}}    
        <time class="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>    
    </footer>    
</article>    
{{/if}}    
{{/foreach}}    

{{! This is the post loop - each post will be output using this markup }}
{{#foreach posts}}
{{#unless featured}}
<article class="{{post_class}}">
    <header class="post-header">
        <h2 class="post-title"><a href="{{url}}">{{{title}}}</a></h2>
    </header>
    <section class="post-excerpt">
        <p>{{excerpt words="26"}} <a class="read-more" href="{{url}}">&raquo;</a></p>
    </section>
    <footer class="post-meta">
        {{#if author.image}}<img class="author-thumb" src="{{author.image}}" alt="    {{author.name}}" nopin="nopin" />{{/if}}    
        {{author}}    
        {{tags prefix="on"}}    
        <time clas    s="post-date" datetime="{{date format='YYYY-MM-DD'}}">{{date format="DD MMMM YYYY"}}</time>    
    </footer>    
</article>    
{{/unless}}    
{{/foreach}}    

{{! Previous/next page links - displayed on every page }}
{{pagination}}

这是我的博客: http: //netsca.pe/

目前唯一的特色帖子是如何在 AWS 上安装 Ghost | 免费的 Amazon EC2 - 完整指南

如您所见,它显示在帖子第三页的顶部,而不是首页的顶部。

我读过Stack Overflow: latest post with specific tag on the front page,但仍然无法弄清楚这一点。

还阅读了这篇文章:幽灵博客支持论坛:在索引页面上首先显示精选帖子, 但仍然无处可去。

4

2 回答 2

2

在最新版本的 Ghost 上,{{get}} 的变体对我来说并不成功。起作用的是:

<section id="main">
              {{#foreach posts}}
              {{#if featured}}
                html for featured posts         
              {{/if}}
              {{/foreach}}

            <div>
              {{#foreach posts}}
              {{^if featured limit="2"}}
                    html for regular post loop
              {{/if}}
              {{/foreach}}
            </div>
</section>

这将精选帖子显示在顶部,而另一个单独样式的帖子循环显示在下方。

于 2016-10-30T06:29:21.677 回答
1

首先感谢来自 ghost.slack.com 的@subic,他很好地测试了我的主题并为我指明了正确的方向。

在阅读了冗长的讨论GitHub Ghost 问题:Query (get) helper #4439最近关闭后,好消息 - 助手和过滤器正在添加到Public API v1中!

{{#get}} helper #5619刚刚被合并到 master(仍然不稳定),所以解决方案:

{{#get "posts" featured="true" as |featured|}}
  {{#foreach featured}}
    ...
  {{/foreach}}
 {{/get}}
于 2015-10-16T10:37:47.240 回答