I know how to create a post in jekyll, but how can I create a page (like About
) without it being considered as a post?
我知道如何在jekyll中创建一个帖子,但是我如何能够创建一个页面(比如About)而不将其视为一个帖子?
Also, I use Github pages, so I can't use extensions.
另外,我使用Github页面,所以我不能使用扩展。
2 个解决方案
#1
1
This looks like a bug. But there's a workaround: create a directory called eg. "about" and put your content into about/index.[fill in the blank]. (oh, and by the way, report it.)
这看起来像个bug。但是有一个变通方法:创建一个名为eg的目录。"about"并把你的内容放入about/index中。(填入空白)。(哦,顺便说一下,报告一下。)
#2
30
If you create a file called about.html
, about.markdown
or about.textile
in the root of your project it will be treated as a static page.
如果您创建一个名为about的文件。html。减记约。在您的项目的根目录中,它将被视为一个静态页面。
You can still give it some YAML front matter and jekyll if you wish to share a template etc.
你仍然可以给它一些YAML的正面物质和jekyll如果你想分享一个模板等。
It's all explained on the jekyll wiki at https://github.com/mojombo/jekyll/wiki/usage
这在jekyll wiki上有详细的解释,网址是https://github.com/mojombo/jekyll/wiki/usage
Here's an excerpt from my about.markdown
file
这是我的文章节选。减价的文件
---
layout: default
title: About | Purebreeze
---
I'm a software developer based in London...
That's saying use the default template, set title to "About | Purebreeze" (which is rendered via a liquid tag in my default template) and then the contents of my about page.
这就是说,使用默认模板,将标题设置为“关于| Purebreeze”(在我的默认模板中通过一个标签来呈现),然后是我的About页面内容。
This is then rendered at http://purebreeze.com/about by github (by default this would have been (http://levent.github.com/about)
然后在http://purebreeze.com/about中由github呈现(默认情况下,它应该是(http://levent.github.com/about)
#1
1
This looks like a bug. But there's a workaround: create a directory called eg. "about" and put your content into about/index.[fill in the blank]. (oh, and by the way, report it.)
这看起来像个bug。但是有一个变通方法:创建一个名为eg的目录。"about"并把你的内容放入about/index中。(填入空白)。(哦,顺便说一下,报告一下。)
#2
30
If you create a file called about.html
, about.markdown
or about.textile
in the root of your project it will be treated as a static page.
如果您创建一个名为about的文件。html。减记约。在您的项目的根目录中,它将被视为一个静态页面。
You can still give it some YAML front matter and jekyll if you wish to share a template etc.
你仍然可以给它一些YAML的正面物质和jekyll如果你想分享一个模板等。
It's all explained on the jekyll wiki at https://github.com/mojombo/jekyll/wiki/usage
这在jekyll wiki上有详细的解释,网址是https://github.com/mojombo/jekyll/wiki/usage
Here's an excerpt from my about.markdown
file
这是我的文章节选。减价的文件
---
layout: default
title: About | Purebreeze
---
I'm a software developer based in London...
That's saying use the default template, set title to "About | Purebreeze" (which is rendered via a liquid tag in my default template) and then the contents of my about page.
这就是说,使用默认模板,将标题设置为“关于| Purebreeze”(在我的默认模板中通过一个标签来呈现),然后是我的About页面内容。
This is then rendered at http://purebreeze.com/about by github (by default this would have been (http://levent.github.com/about)
然后在http://purebreeze.com/about中由github呈现(默认情况下,它应该是(http://levent.github.com/about)