Hello! This is the underlying Github repository for the FFXIV Elemental Raid Macros site.
The website is generated via Jekyll using Just-The-Docs as a theme.
- Make a fork of the repository.
- Make your edits in the fork.
- Create a Pull Request- once approved, your edits will be merged into the main repository.
Before pushing, it is often a good idea to build and preview the created site locally to check if everything is working as expected. This lets you test changes before committing them, and avoids having to wait for Github Pages.
In order to build the site locally, you'll first need to:
- Download and install Ruby
- Download and install Jekyll
- Install the project dependencies using
bundle install
.
Once Ruby and Jekyll are installed, you can generate the site via the command:
bundle exec jekyll serve
This will generate the requisite HTML pages under the _site
folder (note that _site
is part of .gitignore
).
Once the site has been built and running, you can then open it on your browser
by navigating to http://localhost:4000/
.
Image assets should be placed in the assets
directory- this is done in order
to support future localisation efforts, as relative image paths from the
various pages don't seem to work well.