Jekyllのページファイルを_pagesなどのフォルダで整理する方法
Jekyllのデフォルト設定では_posts
フォルダに入れたものは投稿として生成してくれるが、ページファイルはsource
直下に置かなくてはいけない。これを整理したい。
これを
_config.yml
_posts
index.html
こうしたい
_config.yml
_pages
└ index.html
_posts
手順は2つです。
1. _config.yml
に_pages
を読み込む指定を記述
_config.yml
# 設定いろいろ...
include: ['_pages'] # この行を追加
2. 対象のページ(ここではindex.html
)にpermalink
をセット
index.html
---
layout: default
title: HOME
permalink: / # permalinkにルートを指定
---
Author And Source
この問題について(Jekyllのページファイルを_pagesなどのフォルダで整理する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/deconcepter/items/74135669d414c37f91ad著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .