This is the github repo for the Hackboat website - the unconference that floats.
Join us for a one-day infosec unconference on a boat in Portland, OR on June 6th, 2025.
Before you begin, ensure you have the following installed:
-
Clone this repository to your local machine
git clone <repository-url> cd hackboat2025
-
Install the required gems
bundle install
To start the site locally:
bundle exec jekyll serve
This will start a local server, typically at http://localhost:4000
. You can view the site by opening this URL in your web browser.
If you want to see draft posts and make the server watch for changes:
bundle exec jekyll serve --drafts --livereload
_config.yml
: Configuration settings for the Jekyll site_layouts/
: HTML templates for different page types_sass/
: SCSS stylesheetsassets/
: Static files like images, CSS, and JavaScriptindex.html
: The main landing page
After making changes to the site:
- Test your changes locally using the instructions above
- Commit your changes to the repository
- Create a pull request