mapley is Jekyll Theme that is an autumn & reading book style This is My First Jekyll theme for learning more about Jekyll. So It has some bug, but I’m going to do making and debugging this for better.

Features

  • diary posts is to suit write essay.
  • The color of the pages is close to the color of the book, so less strain on the eyes

Installation

You can install this the easiest by forking mapley repository

Install

  • Install Ruby
  • git clone from repository
git clone https://github.com/Vector-7/mapley.git
  • Install dependencies
bundle install
  • running
jekyll serve

Setting (_config.yml)

title: [Blog Title]
email: [your email]
baseurl: [base url]
url: [deploy url]
# user info
username: [your nickname]
introduce: [summary about yourself]

How to write posts

In contents(Post)

make new markdown file to _posts and write config like this you must write type to “contents”

---
layout: post
title: [your post title]
date: [select write date]
type: contents
category: [select category]
tags: [tag array] (ex: ["tag1", "tag2" ...])
---

In Diary

make new markdown file to _posts and write config like this

---
layout: post
title: [your post title]
date: [select write date]
type: diary
tags: [tag array] (ex: ["tag1", "tag2" ...])
---