124 lines
2.9 KiB
YAML
124 lines
2.9 KiB
YAML
# Field Guide for Subversives - Jekyll Configuration
|
|
|
|
title: "Field Manual for Resistance Operations"
|
|
subtitle: "FM-R1: Secure Communication Networks for Decentralized Resistance"
|
|
description: "A comprehensive guide to secure communication and operational security for newcomers to resistance movements"
|
|
baseurl: ""
|
|
url: "https://guide.resist.is"
|
|
|
|
# Organization info
|
|
organization: "Department of Internautics"
|
|
bureau: "Bureau of Decentralized Resistance"
|
|
manual_designation: "FM-R1"
|
|
classification: "UNCLASSIFIED"
|
|
version: "1.0"
|
|
date: "2025-08-28"
|
|
|
|
# Build settings
|
|
markdown: kramdown
|
|
highlighter: rouge
|
|
permalink: /:categories/:title/
|
|
|
|
# Collections
|
|
collections:
|
|
parts:
|
|
output: true
|
|
permalink: /:collection/:name/
|
|
chapters:
|
|
output: true
|
|
permalink: /:collection/:name/
|
|
sections:
|
|
output: true
|
|
permalink: /:collection/:name/
|
|
appendices:
|
|
output: true
|
|
permalink: /:collection/:name/
|
|
|
|
# Default layouts
|
|
defaults:
|
|
- scope:
|
|
path: ""
|
|
type: "pages"
|
|
values:
|
|
layout: "default"
|
|
- scope:
|
|
path: ""
|
|
type: "parts"
|
|
values:
|
|
layout: "part"
|
|
- scope:
|
|
path: ""
|
|
type: "chapters"
|
|
values:
|
|
layout: "chapter"
|
|
- scope:
|
|
path: ""
|
|
type: "sections"
|
|
values:
|
|
layout: "section"
|
|
- scope:
|
|
path: ""
|
|
type: "appendices"
|
|
values:
|
|
layout: "appendix"
|
|
|
|
# Navigation structure
|
|
navigation:
|
|
- title: "Table of Contents"
|
|
url: "/"
|
|
- title: "Preface"
|
|
url: "/preface/"
|
|
- title: "Introduction"
|
|
url: "/introduction/"
|
|
- title: "Part I: Foundations"
|
|
url: "/parts/part-1/"
|
|
children:
|
|
- title: "Chapter 1: Core Security Principles"
|
|
url: "/chapters/chapter-1/"
|
|
- title: "Chapter 2: Threat Assessment"
|
|
url: "/chapters/chapter-2/"
|
|
- title: "Part II: Communication Systems"
|
|
url: "/parts/part-2/"
|
|
children:
|
|
- title: "Chapter 3: Communication Architecture"
|
|
url: "/chapters/chapter-3/"
|
|
- title: "Chapter 4: Secure Messaging"
|
|
url: "/chapters/chapter-4/"
|
|
- title: "Chapter 5: File Sharing"
|
|
url: "/chapters/chapter-5/"
|
|
- title: "Part III: Operational Security"
|
|
url: "/parts/part-3/"
|
|
children:
|
|
- title: "Chapter 6: Hardware Security"
|
|
url: "/chapters/chapter-6/"
|
|
- title: "Chapter 7: Digital Hygiene"
|
|
url: "/chapters/chapter-7/"
|
|
- title: "Chapter 8: Operational Procedures"
|
|
url: "/chapters/chapter-8/"
|
|
- title: "Part IV: Advanced Operations"
|
|
url: "/parts/part-4/"
|
|
children:
|
|
- title: "Chapter 9: Network Resilience"
|
|
url: "/chapters/chapter-9/"
|
|
- title: "Chapter 10: Counter-Intelligence"
|
|
url: "/chapters/chapter-10/"
|
|
- title: "Appendices"
|
|
url: "/appendices/"
|
|
|
|
# Plugins
|
|
plugins:
|
|
- jekyll-sitemap
|
|
- jekyll-feed
|
|
|
|
# Exclude from processing
|
|
exclude:
|
|
- Gemfile
|
|
- Gemfile.lock
|
|
- node_modules
|
|
- vendor/bundle/
|
|
- vendor/cache/
|
|
- vendor/gems/
|
|
- vendor/ruby/
|
|
- README.md
|
|
|