All Projects → hemangsk → Gravity

hemangsk / Gravity

Licence: mit
Minimal is the new cool.

Projects that are alternatives of or similar to Gravity

Simplicity
A free, flexible, superfast and easily customizable Jekyll Theme with no Javascript but beautiful typography.
Stars: ✭ 67 (-84.6%)
Mutual labels:  jekyll, minimalist
Lagrange
A minimalist Jekyll theme for running a personal blog
Stars: ✭ 454 (+4.37%)
Mutual labels:  jekyll, minimalist
Good Clean Read
A Jekyll template for publishing clean, readable articles and single-page sites
Stars: ✭ 204 (-53.1%)
Mutual labels:  jekyll, minimalist
Jekyll Minibundle
A minimalistic asset bundling plugin for Jekyll
Stars: ✭ 65 (-85.06%)
Mutual labels:  jekyll, minimalist
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (-48.74%)
Mutual labels:  jekyll, minimalist
Resume Website
jsonresume website 🏡
Stars: ✭ 351 (-19.31%)
Mutual labels:  jekyll
Space Jekyll Template
A simple spacemacs template on jekyll. https://victorvoid.github.io/space-jekyll-template/
Stars: ✭ 371 (-14.71%)
Mutual labels:  jekyll
Hugo Xmin
eXtremely Minimal Hugo theme: about 150 lines of code in total, including HTML and CSS (with no dependencies)
Stars: ✭ 351 (-19.31%)
Mutual labels:  minimalist
Portfolyou
A beautiful portfolio Jekyll theme that works with GitHub Pages.
Stars: ✭ 334 (-23.22%)
Mutual labels:  jekyll
Photography
A free online portfolio website to showcase your photos.
Stars: ✭ 420 (-3.45%)
Mutual labels:  jekyll
Mundana Theme Jekyll
Mundana is a free Jekyll theme, Medium styled.
Stars: ✭ 402 (-7.59%)
Mutual labels:  jekyll
Caniemail
Can I email… Support tables for HTML and CSS in emails.
Stars: ✭ 363 (-16.55%)
Mutual labels:  jekyll
Siberiawolf.github.io
Siberiawolf的小窝
Stars: ✭ 353 (-18.85%)
Mutual labels:  jekyll
Gulp Tutorial
Code examples for my Gulp.js tutorial series
Stars: ✭ 383 (-11.95%)
Mutual labels:  jekyll
Awesome First Timers
Place to contribute if you are a first timer
Stars: ✭ 353 (-18.85%)
Mutual labels:  jekyll
Jekyll Paginate V2
Pagination Generator for Jekyll 3 (enhanced replacement for the old built-in jekyll-paginate gem) ⛺
Stars: ✭ 412 (-5.29%)
Mutual labels:  jekyll
Jekyll Theme Prologue
A Jekyll version of the "Prologue" theme by HTML5 UP
Stars: ✭ 346 (-20.46%)
Mutual labels:  jekyll
Baretest
An extremely fast and simple JavaScript test runner.
Stars: ✭ 364 (-16.32%)
Mutual labels:  minimalist
Agusmakmun.github.io
☕️ Free and open-source Jekyll theme
Stars: ✭ 396 (-8.97%)
Mutual labels:  jekyll
Picoweb
Really minimal web application framework for the Pycopy project (minimalist Python dialect) and its "uasyncio" async framework
Stars: ✭ 361 (-17.01%)
Mutual labels:  minimalist


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.

Welcome to Gravity


INSTALLATION

Dependencies

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

USAGE

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!


ADDING POSTS

The theme by default ships with starter posts located in _posts/. Delete these posts and add your content to the _posts folder to see them being served up by Jekyll. This would be a good guide to getting started on writing posts using Jekyll. We've added a concise guide below:

  • Create a .markdown file inside _posts folder.
  • Name the file according to the format YY-MM-DD-[short name for your post].
  • 2016-03-30-i-love-design.markdown
  • Write the Front Matter and content in the file.

FORMAT

---
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]
---

CREATE PAGES

  • Create a .md file in the root directory.
  • Name the file with the desired page link name. about.md design.md
  • Write the Front Matter and content in the file.

FORMAT

---
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."
---

Introducing

ARCHIVE PAGES

You can display a list of all the posts corresponding to a particular category on a standalone page using the ARCHIVE layout.

  • Create a .md file in the root directory.
  • Name the file. Preferred name will be the name of the category. *life.md
  • Write the Front Matter and content in the file.

FORMAT

---
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"
tagline: "It's all about perception"
category: "design"
---

DIRECTORY STRUCTURE

├── 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
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].