2014-10-12 97 views
0

我對Ruby不熟悉,我知道有一個常見的Jekyll插件可以做到這一點,但我整天都在嘗試,並且一直無法工作。如何根據Jekyll中的標籤對帖子進行排序?

我加入這個插件:

module Jekyll 
    class TagIndex < Page 
    def initialize(site, base, dir, tag) 
     @site = site 
     @base = base 
     @dir = dir 
     @name = 'index.html' 
     self.process(@name) 
     self.read_yaml(File.join(base, '_layouts'), 'tag_index.html') 
     self.data['tag'] = tag 
     tag_title_prefix = site.config['tag_title_prefix'] || 'Posts Tagged &ldquo;' 
     tag_title_suffix = site.config['tag_title_suffix'] || '&rdquo;' 
     self.data['title'] = "#{tag_title_prefix}#{tag}#{tag_title_suffix}" 
    end 
    end 
    class TagGenerator < Generator 
    safe true 
    def generate(site) 
     if site.layouts.key? 'tag_index' 
     dir = site.config['tag_dir'] || 'tag/tag' 
     site.tags.keys.each do |tag| 
      write_tag_index(site, File.join(dir, tag), tag) 
     end 
     end 
    end 
    def write_tag_index(site, dir, tag) 
     index = TagIndex.new(site, site.source, dir, tag) 
     index.render(site.layouts, site.site_payload) 
     index.write(site.dest) 
     site.pages << index 
    end 
    end 
end 

和_config.yml我加

tag_dir: /tag 

我這個包含文件顯示的標籤列表:

<div class="tags modal"> 
    <ul> 
     {% for tag in site.tags %} 
     <li> 
      <a href="/tag/{{ tag | first | slugize }}/"> 
       {{ tag | first }} 
      </a> 
     </li> 
     {% endfor %} 
    </ul> 
</div> 

當我嘗試選擇一個標記,URL適當地更改,但沒有其他更改。它不顯示我的tag_index模板或過濾標籤。

The site can be previewed and full source is available here.我一直撞着我的頭靠在牆上一會兒,不能爲那些該死的我弄清楚我做得不對。

回答

1

Only some plugins are supported by github pages。您的標籤頁當前未生成。

如果你想用你的標籤插件,你必須

  • 生成你的網站在本地
  • 添加一個空.nojekyll文件
  • 推生成的文件在你分支
  • 您也可以將您的代碼推送到其他分支中,如代碼
+0

問題實際上是由於history.js代碼以及我如何實現它,但此信息也很有用。謝謝。 – davidcondrey 2014-10-12 23:52:29

+0

現在我有'_sites'中的git倉庫。是否有可能添加與開發文件的父目錄作爲分支? – davidcondrey 2014-10-13 00:00:34

+1

看看我的解釋如何設置多個分支[這裏](https://github.com/djacquel/JekyllVersioningWorkflows#user-content-setup-explanation) – 2014-10-13 07:15:57

3

如果所有的職位一個單個標籤頁所有標籤(如this one on my blog足夠你,你可以just generate it with Jekyll/Liquid,而無需使用任何插件在所有。

如果你絕對要爲每個標籤單獨的頁面,那麼你只有兩個選擇:

  1. David Jacquel's answer(產生你的本地計算機上,使用插件的頁面,推動僅生成的HTML到GitHub上)

  2. 每次你寫,你用一個新的標籤,第一次後,manually create a new page with the tag namewhere you load all posts for that tag

這兩種選擇都比我的博客(請參閱第一個鏈接)中的標籤頁多一點,但當GitHub頁面上的每個標籤需要一個頁面時,沒有其他辦法。

相關問題