join.resist.is/_config.yml
Jekyll Converter bee872301d Convert site to Jekyll
- Add Jekyll configuration (_config.yml)
- Create default layout with proper HTML structure
- Extract CSS to separate file (assets/css/main.css)
- Convert index.html to Jekyll format (index.md)
- Move image to assets directory
- Add Gemfile for Jekyll dependencies
- Backup original index.html

The site now uses Jekyll static site generator while maintaining
the same visual appearance and functionality as the original.
2025-08-26 22:48:31 -04:00

37 lines
553 B
YAML

# Site settings
title: Resist
description: United Interwebs Department of Internautics - Bureau of Decentralized Resistance
baseurl: ""
url: ""
# Build settings
markdown: kramdown
highlighter: rouge
permalink: pretty
# Exclude files from processing
exclude:
- README.md
- LICENSE
- Gemfile
- Gemfile.lock
# Collections
collections:
posts:
output: true
# Defaults
defaults:
- scope:
path: ""
type: "pages"
values:
layout: "default"
- scope:
path: ""
type: "posts"
values:
layout: "post"