If you want to become an author, leave us an issue requesting contributor access to this repo.
Add your author information in _data/authors.yml
short_name: # <- how to retrieve your info in posts
name: Your Name Here
bio: Something cool about you
twitter: username
github: usarname
homepage: https://yourpage.com
profile: https://yourpage.com # or something else like your G+ profile
image: https://link_to_image.com # like gravatar
- Clone this repository
$ git clone [email protected]:dev-knights/dev-knights.github.io.git
- Install dependencies
$ bundle install
- Run dev server
$ rake serve
You can write a post about anything you want related to software engineering or programming. Your post can be written in spanish or english.
In order to create a new post, you should create a new markdown file in _posts
folder or run rake new:post
to create a new valid post file.
After finishing your post, in order to publish it, change YAML value published: false
to published: true
Drafts should be located in _drafts
folder. You can create a new draft by running rake new:draft
command.
After finish it, move it to _posts
using rake command rake publish_draft _drafts/name-of-your-draft.markdown
. Don't forget to set published
to true too.
Post an issue if you have any trouble or question.