This repository contains the website for Blip, running on GitHub Pages with Jekyll.
The easiest way to test the website locally is using Docker:
- Make sure Docker is installed on your system
- Run the included script from the website directory:
./docker-test.sh
- Access the website at http://localhost:4000
The website will automatically reload when you make changes to files.
To add a new markdown page:
- Create a new
.md
file in the website directory - Add front matter at the top of the file:
---
layout: default
title: Your Page Title
permalink: /your-page-url
---
- Add your markdown content below the front matter