This is the official website and documentation for PivotPHP, built with Jekyll for GitHub Pages.
- Ruby 2.7 or higher
- Bundler (
gem install bundler
)
-
Install dependencies:
bundle install
-
Run the development server:
bundle exec jekyll serve
-
Open http://localhost:4000 in your browser
bundle exec jekyll build
The static site will be generated in the _site
directory.
website/
├── _config.yml # Jekyll configuration
├── _layouts/ # Page layouts
├── _includes/ # Reusable components
├── _docs/ # Documentation pages
├── _sass/ # SCSS styles
├── assets/ # Images, CSS, JS
│ ├── css/
│ └── images/
├── index.md # Homepage
└── Gemfile # Ruby dependencies
- Create a new markdown file in
_docs/
- Add front matter with layout and permalink
- Update
_includes/docs-sidebar.html
to add navigation
Example:
---
layout: docs
title: Your Page Title
permalink: /docs/your-page/
---
# Your Page Title
Your content here...
The site is automatically deployed to GitHub Pages when changes are pushed to the main branch.
MIT License - see the main project LICENSE file.