2012-11-02 2 views

답변

1

여기에 하나 개의 옵션입니다. 그것은 내부 파일 'index.html을'과 디렉토리 _posts을 넣어 : 그래서 당신이이 라인을 따라 뭔가있을 것이다 : 당신이 그 내부에서 변경 한 모든 게시물을

_layouts/ 
_plugins/ 
_posts/ 
    some_post_that_is_not_a_project.md 
projects/ 
    index.html 
    _posts/ 
     some_project.md 
     some_other_project.md 
index.html 
config.yml 

디렉토리가 자동으로 '프로젝트에 속할 _posts '카테고리.

<ul> 
{% for post in site.categories.projects %} 
    <li> 
    <a href="/{ post.permalink }}"> 
     <img src="{{ post.image }} alt="{{ post.title }}></img> 
     <h3>{{ post.title }}</h3> 
     <p>{{ post.summary }}</p> 
    </a> 
    </li> 
{% endfor %} 
</ul> 

를 그리고이 같은 게시물이 : 이것은 당신이 다음 프로젝트에 다음/index.html을 같은 것을 넣을 수 있다는 것을 의미한다

--- 
title: Fancy buttons 
image: /path/to/some/image.jpg 
summary: | 
    I created Fancy Buttons (a Compass plugin) to make it easy to design gorgeous 
    customizable CSS buttons in seconds. 
| 
--- 

Here is the longer content of this post etc etc which will 
appear on the project page itself... 

이, 그 일을하는 좋은 방법입니다 당신 때문에 이동하고 유지하기 쉬운 명확하고 민감한 디렉토리 구조가 있어야합니다.

희망이 도움이됩니다.

+0

나는 시도했지만 해결하지 못했습니다. ( – Drake

+0

어떻게? 오류가 발생하면 오타 또는 구문 오류가 발생할 수 있습니다. 문제를 해결하기 위해 더 많은 도움을 드리 겠지만 더 많은 정보가 필요합니다. 처음에는 디렉토리 구조가 원래 밑줄로 시작하는 프로젝트/디렉토리를 가졌습니다. 나는 방금 수정했습니다. – heliotrope

+0

Octopress는 밑줄이있는 모든 폴더를 무시하는 것으로 보이지만 마침내 해결했습니다. – Drake