在jekyll博客中使用* link rel *?

时间:2011-10-08 11:38:14

标签: jekyll

我正在使用Jekyll作为我的个人博客,我想在我的文章页面上找到 link rel ,指向 next / * previous * article。

Jekyll有可能吗?

1 个答案:

答案 0 :(得分:0)

这样的事情应该有效:

 <div id="page-navigation"> 
   <div class="clear">&nbsp;</div> 
     <div class="left"> 
       {% if page.previous.url %} 
         <a href="{{page.previous.url}}" title="Previous Post: 
            {{page.previous.title}}">&laquo; {{page.previous.title}}</a> 
        {% endif %} 
       </div> 
       <div class="right"> 
         {% if page.next.url %} 
          <a href="{{page.next.url}}" title="next Post: 
          {{page.next.title}}">{{page.next.title}} &raquo; </a> 
         {% endif %} 
       </div> 
     <div class="clear">&nbsp;</div> 
  </div>