Skip to content

afrendeiro/afrendeiro.github.io

Repository files navigation

My personal website

A Jekyll powered personal website. Uses Jekyll Bootstrap and is hosted on GitHub pages.

Install

Dependencies

First make sure you have the ruby package manager bundler:

sudo apt install ruby-dev ruby-bundler

Now install the requirements specified in the Gemfile:

bundle install

The actual website

git clone https://github.com/plusjade/jekyll-bootstrap.git ${USERNAME}.github.io
cd ${USERNAME}.github.io
git remote set-url origin git@github.io:${USERNAME}/${USERNAME}.github.io.git
git push origin master

Edit the _config.yaml file with your information, social networks, cv, etc... and you're ready!

Create pages and posts

rake page:new name="about"
rake post:new title="notebook"

or to make a draft and publish it only after:

rake draft:new title="new post"
rake draft:ready title="new post"

Run locally

bundle exec jekyll serve

served at http://0.0.0.0:4000/.

Themes

Go to https://themes.jekyllbootstrap.com/, choose a theme and install it:

rake theme:install git="https://github.com/jekyllbootstrap/theme-twitter.git"

Customize themes or create a new one from scratch.