- 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.
37 lines
553 B
YAML
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"
|
|
|