Files
HacktivityLabSheets/_config.yml
Z. Cliffe Schreuders 0566a6deef Add jekyll-seo-tag plugin and update Gemfile for additional dependencies
- Included the jekyll-seo-tag plugin in the configuration for improved SEO capabilities.
- Updated the Gemfile to add jekyll-seo-tag and other necessary gems for enhanced functionality.
- Created a new GitHub Actions workflow for deploying the Jekyll site to GitHub Pages.
2025-09-23 12:54:59 +01:00

51 lines
934 B
YAML

# Site settings
title: Hacktivity Lab Sheets
description: Lab sheets for Hacktivity SecGen labs
# baseurl: "/HacktivityLabSheets" # Commented out for local development
url: "https://cliffe.github.io"
# GitHub Pages settings
github:
repository_name: HacktivityLabSheets
# Jekyll settings
markdown: kramdown
highlighter: rouge
# Collections for organizing labs
collections:
labs:
output: true
permalink: /:collection/:category/:name/
# Default settings for lab posts
defaults:
- scope:
path: "_labs"
type: "labs"
values:
layout: "lab"
- scope:
path: "_labs/**"
type: "labs"
values:
layout: "lab"
# Plugin settings
plugins:
- jekyll-feed
- jekyll-sitemap
- jekyll-seo-tag
# Exclude files from processing
exclude:
- README.md
- LICENSE
- .gitignore
- Gemfile
- Gemfile.lock
- vendor/
- .bundle/
- .sass-cache/
- .jekyll-cache/
- .jekyll-metadata