| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
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 jekyllIn case you don't have the bundler gem installed already, you can install it as follows:
$ gem install bundlerFor pagination, Gravity uses the jekyll-paginate gem :
$ gem install jekyll-paginateOnce you have the required gems, you can go ahead and clone the Gravity repository or download a zip of the master branch.
Run :
$ jekyll serveJekyll should now be generating your content!
--- 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"] ---
--- 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." ---
페이지 아카이브란?
--- 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
| Back | FazBrowse Home | New Git URL |