Simple static site for xapps. Built with Jekyll. Deployable to GitHub Pages.
-
Install Ruby (if not already installed).
-
Install dependencies:
bundle install
-
Run the dev server:
bundle exec jekyll serveOr with npm:
npm run dev
-
Open http://localhost:4000. The site will reload when you edit files.
- Push this repository to GitHub.
- Go to Settings → Pages.
- Under "Source", select Deploy from a branch.
- Choose your default branch (usually
main) and / (root) as the folder. - Click Save. GitHub will build the site with Jekyll automatically.
The site will be live at https://<username>.github.io/<repo-name>/.
├── _config.yml
├── _includes/
│ └── header.html
├── _layouts/
│ └── default.html
├── css/
│ └── style.css
├── index.html
├── docs.html
├── Gemfile
└── README.md
_includes/header.html— Shared header with logo and nav._layouts/default.html— Base layout wrapping all pages.index.html,docs.html— Page content with front matter.