Personal/family website hosted at family.delgadoperez.com
This is a Jekyll-based static site using the Just the Docs theme, deployed automatically to GitHub Pages.
- Ruby 3.1 or later
- Bundler
# Install dependencies
bundle install# Run local development server
bundle exec jekyll serveVisit http://localhost:4000 to view the site. Changes auto-regenerate except for _config.yml (requires server restart).
# Build site to _site/ directory
bundle exec jekyll buildCreate a file in _posts/ with the format YYYY-MM-DD-title.markdown:
---
layout: post
title: "Your Post Title"
date: 2025-02-09 12:00:00 -0600
categories: category1 category2
---
Your content here...Create a .markdown file in the root directory:
---
layout: page
title: "Page Title"
permalink: /page-url/
---
Your content here...The site automatically deploys to GitHub Pages when changes are pushed to the main branch via GitHub Actions (see .github/workflows/jekyll.yml).