Invisible link to canonical for Microformats

Installation


How to use Chulapa

Chulapa was developed in and for Github. There are three tested possible ways to use Chulapa:

1. Use our Github Template

Recommended if you are starting from scratch

Create a Github account, click this link and quickstart your site!

2. Remote theme method

Recommended if you are migrating a site.

You can use the jekyll-remote-theme method. Just follow these steps:

  1. Create a new GitHub repository or go to an existing one
  2. Add this line to your _config.yml:

    
    remote_theme: dieghernan/chulapa
    
    ... more config options
    
  3. Remove other remote_theme/theme instances of your _config.yml file.

Don’t forget to deploy your site:

  • On your Github repo, go to Setting > Github Pages and publish your site.
  • Add your content.

By using jekyll-remote-theme your repo would have remote access to the content of these folders:

  • assets
  • _layouts
  • _includes
  • _sass

Note that making copies of theme files will prevent you from receiving any theme updates on those files.

Please read the rest of the docs for further adjustments.

3. Gem-based method

With Gem-based themes, directories such as the assets, _layouts, _includes, and _sass are stored in the theme’s gem, hidden from your immediate view. This allows for easier installation and updating as you don’t have to manage any of the theme files.

To install as a Gem-based theme:

  1. Add the following to your Gemfile:

    gem "chulapa-jekyll"
    
  2. Fetch and update bundled gems by running the following Bundler command:

    bundle
    
  3. Set the theme in your project’s Jekyll _config.yml file:

    theme: chulapa-jekyll
    

To update the theme run bundle update.