mirror of
https://github.com/cliffe/HacktivityLabSheets.git
synced 2026-02-20 13:50:46 +00:00
- Modified permalink structure in the configuration to include category in lab URLs. - Added author and license metadata to lab sheets for better attribution and clarity. - Introduced a comprehensive highlighting guide for AI assistants to standardize lab sheet formatting. - Enhanced JavaScript functionality to support multiple highlight types and improved table of contents generation. - Updated styles for various highlight types to improve visual distinction in lab content. - Added a new logo for branding consistency across the site.
50 lines
915 B
YAML
50 lines
915 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
|
|
|
|
# Exclude files from processing
|
|
exclude:
|
|
- README.md
|
|
- LICENSE
|
|
- .gitignore
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- vendor/
|
|
- .bundle/
|
|
- .sass-cache/
|
|
- .jekyll-cache/
|
|
- .jekyll-metadata |