Technical publications and research from Rallypoint One LLC.
Live Site: https://rallypointone.github.io/resource-guides
- Go to github.com/RallypointOne
- Click "New repository"
- Name it:
resource-guides - Set to Public (required for free GitHub Pages)
- Do NOT initialize with README (we're uploading files)
- Click "Create repository"
Option A: GitHub Web Upload (Easiest)
- On your new empty repo page, click "uploading an existing file"
- Drag and drop ALL files from this folder
- Click "Commit changes"
Option B: Git Command Line
cd resource-guides
git init
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin https://github.com/RallypointOne/resource-guides.git
git push -u origin main- Go to Settings → Pages (left sidebar)
- Under "Build and deployment":
- Source: GitHub Actions
- That's it! The workflow will run automatically.
The GitHub Action will build and deploy your site. Check progress at:
- Actions tab → See the running workflow
Your site will be live at: https://rallypointone.github.io/resource-guides
- Create a new
.mdfile in thedocs/folder - Add this frontmatter at the top:
---
layout: default
title: Your Document Title
nav_order: 3
description: "Brief description for search"
has_toc: true
---
# Your Document Title
Your content here...- Commit and push — the site updates automatically in ~2 minutes
- Go to your repository on GitHub
- Navigate to
docs/folder - Click "Add file" → "Create new file"
- Name it
your-document.md - Paste your markdown content with frontmatter
- Click "Commit new file"
resource-guides/
├── _config.yml # Site configuration
├── _sass/
│ ├── color_schemes/
│ │ └── rp1.scss # RP1 brand colors
│ └── custom/
│ └── custom.scss # Custom styles (hover footnotes, tables)
├── _includes/
│ └── head_custom.html # Custom scripts
├── assets/
│ ├── images/
│ │ └── logo.png # RP1 logo
│ └── js/
│ └── footnotes.js # Hover tooltip functionality
├── docs/
│ └── ml-downscaling-naval.md # Your research documents go here
├── index.md # Homepage
├── Gemfile # Ruby dependencies
└── .github/
└── workflows/
└── deploy.yml # Auto-deployment workflow
Edit _sass/color_schemes/rp1.scss:
$rp1-red: #c23a2b; // Primary accent
$rp1-charcoal: #4a4a4a; // Text/headingsEdit _config.yml:
title: Rallypoint One Resource Guides
description: Your description hereIn each document's frontmatter, adjust nav_order:
nav_order: 2 # Lower numbers appear first- ✅ Sticky sidebar navigation - Always know where you are
- ✅ Hover footnotes - See citations without scrolling
- ✅ Full-text search - Find content across all documents
- ✅ Mobile responsive - Works on all devices
- ✅ Auto-deploy - Push changes, site updates automatically
- ✅ SEO optimized - Proper meta tags and sitemap
Site not updating?
- Check the Actions tab for build errors
- Ensure GitHub Pages is set to "GitHub Actions" source
Footnotes not showing tooltips?
- Clear browser cache (Ctrl+Shift+R)
- Check browser console for JavaScript errors
Logo not showing?
- Verify
assets/images/logo.pngexists - Check
_config.ymlhas correct path
For issues with this template, contact your technical team or refer to:
© 2025 Rallypoint One LLC