Logo

Groveld's Jekyll Theme

This is the jekyll theme used for the personal website of Martin Groeneveld.

License Discord

GitHub Pages

To start your project, fork this repository. After forking the repo, your site will be live immediately on your personal Github Pages account, e.g. https://yourusername.github.io/your-repo-name/.

Make sure GitHub Pages is enabled for your repo. It might take some time for the site to propagate entirely.

Getting Started

git clone https://github.com/groveld/jekyll-theme.git
cd jekyll-theme
gem install bundler && bundle install # Ensures you have all RubyGems needed
bundle exec jekyll serve # Build site and run a local server

The front-matter of a post should look like this;

---
layout      : post
updated     : "2018-05-27@12:23"
author      : "John Doe"
email       : "[email protected]"
title       : "Some Title Here"
description : "A very descriptive description here"
tags        : [some, tags, here]
---

The front-matter of a page should look like this;

---
layout      : page
permalink   : /page-url
title       : "Some Title Here"
description : "A very descriptive description here"
---