用法懶人包
- 下載 Indexer for Octopress。
- 將
indexer.rb
複製到plugins
目錄下。 -
新增
source\_includes\custom\asides\indexer.html
。{% if page.indexer == true %} <section> <h1>Catalog</h1> {{ page.indexer_aside }} </section> {% else %} {% if site.page_asides.size %} {% include_array default_asides %} {% endif %} {% endif %}
-
編輯
_config.yml
。# Each layout uses the default asides, but they can have their own asides instead. Simply uncomment the lines below # and add an array with the asides you want to use. # blog_index_asides: # post_asides: page_asides: [custom/asides/indexer.html] # 加上這個
- 完成!之後只要在你需要索引的 page 上方 YAML 區塊加上
indexer: true
,右方欄位就會自己索引了。