如何在Ghost Framework(博客)中提供指向下一篇文章的便捷链接

时间:2018-10-05 01:56:42

标签: ghost-blog

是否可以在Ghost Blogging Platform中方便地提供指向下一篇文章的链接?

该怎么做?

理想情况下,它将是动态的。因此,如果我更改下一篇文章的标题,则无需转到该帖子并手动对其进行更改,因为它将知道下一篇文章的详细信息已更改。

1 个答案:

答案 0 :(得分:0)

您可以使用{{next_post}}助手来做到这一点。在此帮助器内,您可以使用常规的post attributes,例如urltitle。 这是我的博客主题的实现:

 <div class="next-post">
   {{#next_post}}                                        
     <a href="{{url}}"> Next <i class="fa fa-angle-double-right"></i> </a>                    
     <a href="{{url}}" class="title"> {{title}} </a>
   {{/next_post}}
 </div>

文档中有更多内容:https://themes.ghost.org/docs/prev_next_post