To add a new rover article to the website:
- Go to the
_rovers
directory in the repository. - Copy the
_template.md
file. This template file provides the structure needed for each new article. - Rename the file to the unique name of your rover.
- Fill in the content as instructed in the template, including any relevant metadata (like title, description, etc.).
- Add any images related to your article in the
/assets/img/name-of-your-rover/...
directory. Make sure to use descriptive names to keep the images organized. - Afterward, please submit a pull request for review.
If you have any other ideas, improvements, or fixes, feel free to make those changes and submit them in a pull request. Contributions of all kinds are welcome and highly appreciated!
Follow these steps to build and serve the site locally:
-
Install Ruby, Bundler, and Jekyll
Make sure Ruby is installed on your system. Then, install Bundler and Jekyll:sudo gem install bundler jekyll
-
Install Dependencies
Ensure you have Ruby, Bundler, and Jekyll installed. Then, install the required gems:bundle install
-
Build the Site
Generate the static files in the_site
directory:bundle exec jekyll build
-
Serve the Site
Serve the site locally athttp://localhost:4000
:bundle exec jekyll serve
- Based on modified LightSpeed Jekyll theme under GPLv3.