Skip to content

OceanDataTools/openrvdas-docs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Minimal Mistakes remote theme starter

Click Use this template button above for the quickest method of getting started with the Minimal Mistakes Jekyll theme.

Contains basic configuration to get you a site with:

  • Sample posts.
  • Sample top navigation.
  • Sample author sidebar with social links.
  • Sample footer links.
  • Paginated home page.
  • Archive pages for posts grouped by year, category, and tag.
  • Sample about page.
  • Sample 404 page.
  • Site wide search.

Replace sample content with your own and configure as necessary.


Troubleshooting

If you have a question about using Jekyll, start a discussion on the Jekyll Forum or StackOverflow. Other resources:

Running Jekyll Locally on MacOS with Minimal Mistakes Theme

This guide provides instructions for setting up and running a Jekyll site with the Minimal Mistakes theme locally on macOS, including how to implement collapsible sidebar navigation.

Prerequisites Installation

  1. Install Ruby (using Homebrew is recommended):

    brew install ruby
  2. Add Ruby to your PATH in .zshrc or .bash_profile:

    export PATH="/usr/local/opt/ruby/bin:$PATH"
  3. Install Bundler:

    gem install bundler

Set Up Your Jekyll Site

  1. Create a new directory for your site (or navigate to your existing site)

  2. Create or update your Gemfile to include Jekyll and Minimal Mistakes:

    source "https://rubygems.org"
    gem "jekyll"
    gem "minimal-mistakes-jekyll"
    gem "jekyll-include-cache", group: :jekyll_plugins
  3. If you're using Ruby 3.0.0+, add webrick to your dependencies:

    bundle add webrick
  4. Create or update _config.yml to use the theme:

    remote_theme: "mmistakes/minimal-mistakes"
    # OR
    # theme: "minimal-mistakes-jekyll"
    
    plugins:
      - jekyll-include-cache

Install Dependencies and Run

  1. Install all dependencies:

    bundle install
  2. Run the local server:

    bundle exec jekyll serve
  3. View your site at http://localhost:4000

  4. Use the --watch flag to automatically regenerate the site when files change:

    bundle exec jekyll serve --watch

Remember that if you make changes to _config.yml, you'll need to restart the Jekyll server for those changes to take effect.

About

Jekyll-based OpenRVDAS documentation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages