If there's any issue you are facing in setting up this theme I'm there for you. Just create an issue in this repository (http://github.com/hemangsk/Gravity), (https://help.github.com/articles/creating-an-issue/) and I'll get back to you asap.
Gravity uses Jekyll and it's built-in SCSS compiler for the associated CSS, so the first thing you'll need is Jekyll itself:
$ gem install jekyll
In case you don't have the bundler
gem installed already, you can install it as follows:
$ gem install bundler
For pagination, Gravity uses the jekyll-paginate gem :
$ gem install jekyll-paginate
Once you have the required gems, you can go ahead and clone the Gravity repository or download a zip of the master branch.
Run :
$ jekyll serve
Jekyll should now be generating your content!
-
- 다음의 포맷을 따라 파일명을 작성합니다: YY-MM-DD-[포스트 제목]
- Front Matter와 내용을 작성합니다
_posts
폴더에 .markdown 파일을 생성합니다.- 다음의 포맷을 따라 파일명을 작성합니다: YY-MM-DD-[포스트 제목]
2016-03-30-i-love-development.markdown
- Front Matter와 내용을 작성합니다
작성 형식
--- layout: post | default | page title: String Post Title date: Time Stamp categories: String | Array of Strings Category / Categories ---
--- layout: post title: "The One with the Blackout" date: 2016-03-30 19:45:31 +0530 categories: ["life", "friends"] ---
- 루트 디렉토리에 .md 파일을 생성합니다.
- 원하는 이름으로 파일명을 작성합니다.
- Front Matter와 내용을 작성합니다
- 원하는 이름으로 파일명을 작성합니다.
development.md
- Front Matter와 내용을 작성합니다
작성 형식
--- layout: page title: String Title of the webpage permalink: / String / Permalink for the webpage tagline: String Optional Gravity Feature : Tagline for the page ---
--- layout: page title: "Science" permalink: /science/ tagline : "Humanity is overrated." ---
페이지 아카이브란?
'archive'
레이아웃을 통해 특정 카테고리에 속해있는 다수의 포스트를 하나의 페이지에 표시하는 방법입니다.
- 루트 디렉토리에 .md 파일을 생성합니다.
- 파일명을 작성합니다. 파일명은 카테고리의 이름과 같아야합니다.
- Front Matter와 내용을 작성합니다
- 파일명을 작성합니다. 파일명은 카테고리의 이름과 같아야합니다.
life.md
- Front Matter와 내용을 작성합니다
작성 형식
--- layout: archive Archive Page Layout title: String Title of the webpage permalink: / String / Permalink for the webpage tagline: String Tagline for the page category : String Name of the category of which the page will show posts. ---
--- layout: archive title: "Design" permalink : "Design" category: "design" tagline: "It's all about perception." ---
├── css # => Output of the combined SASS files
│ └── style.scss
├── _includes # => Contains partials that can be used with your layouts
│ ├── footer.html
│ ├── header.html
│ ├── head.html
│ ├── icon-github.html
│ ├── icon-github.svg
│ ├── icon-twitter.html
│ └── icon-twitter.svg
├── _layouts # => Layout related HTML files
│ ├── archive.html
│ ├── default.html
│ ├── page.html
│ └── post.html
├── _posts # => posts, dynamic content. Follow the format: YEAR-MONTH-DAY-title.MARKUP
│ ├── 2016-03-30-design-stories.markdown
│ ├── 2016-03-30-science0.markdown
│ ├── 2016-03-30-science.markdown
│ └── 2016-03-30-welcome-to-jekyll.markdown
└── _sass # => SASS partials for styling
| ├── _base.scss
| ├── _layout.scss
| └── _syntax-highlighting.scss
├── about.md
├── _config.yml # => Configuration options or flags for your site go here
├── design.md
├── download.md
├── feed.xml
├── index.html
├── LICENSE.txt # => Licensing information
├── README.md
└── science.md