0

I'm using Jekyll for my personal blog and I want to have link rel on my article pages that point to the next/*previous* article.

Is that possible with Jekyll?

4

1 回答 1

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> 
于 2011-10-17T00:01:22.680 回答