Skip to content

Latest commit

 

History

History
39 lines (27 loc) · 1 KB

README.md

File metadata and controls

39 lines (27 loc) · 1 KB

Blog build status

Codes and Tags Blog

This is the repository for my personal blog, here I document technical stuffs and knowledge that I want to share with the world.

Start up the blog

To start the blog locally, you need to have Ruby installed on your machine. Then you can run the following commands:

bundle install
bundle exec jekyll serve

Add new post

To add a new post, you can create a new markdown file in the _posts directory. The file name should be in the format YYYY-MM-DD-title.md. The content of the file should be like this:

bundle exec jekyll post "amazon senior frontend interview"
---
layout: post
title: "Title of the post"
date: 2021-09-01 12:00:00 +0700
categories: category1 category2
---

Content

What I use