Perplexe

Posts

Starting to blog again from a new computer

  • ~1 min read
  1. Go to the GitHub repository
  2. Download the repository and install the GitHub tools
  3. Navigate to the posts directory and add a new post
  4. Website is hosted on Netifly, check the website if it isn’t refreshing
  5. Install Jekyll on the computer, then Git, then Git Credential Manager

Read More

Testing a Jekyll site

  • ~1 min read

By default, the site will be only accessible from the same host as where it is running. To have it accessible from any machine on the local network:

Read More

Admin plug-in

  • ~1 min read

This plugin is quite nice because it provides a CMS-type interface. However, it is not to be deployed in production, only in the development environment.

Read More

Installing a theme in Jekyll

  • ~1 min read

How to install and use a theme in Jekyll (here using https://github.com/mmistakes/jekyll-theme-basically-basic)

  1. Add this line to your Jekyll site’s Gemfile: gem "jekyll-theme-basically-basic"
  2. Add this line to your Jekyll site’s _config.yml file: theme: jekyll-theme-basically-basic
  3. Then run Bundler to install the theme gem and dependencies: bundle install
  4. Download the theme’s files (GitHub repository)
  5. Remove useless files. For this theme: .editorconfig .gitattributes .github .scss-lint.yml CHANGELOG.md jekyll-theme-basically-basic.gemspec LICENSE Rakefile README.md screenshot.png /docs /example

Read More