Skip to content

Commit d7761e6

Browse files
DavidLiedleclaude
andcommitted
Add Jekyll site with GitHub Pages deployment
Set up beautiful Jekyll-based website for "Lisp in 2025" book with: - Responsive book layout with sidebar navigation - Custom layouts and styling optimized for reading - Previous/Next chapter navigation with keyboard shortcuts - Code syntax highlighting and copy buttons - GitHub Actions workflow for automatic deployment - All chapters configured with proper frontmatter 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent e8b3fd0 commit d7761e6

21 files changed

+952
-0
lines changed

.github/workflows/jekyll.yml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
name: Deploy Jekyll site to Pages
2+
3+
on:
4+
push:
5+
branches: ["main"]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
pages: write
11+
id-token: write
12+
13+
concurrency:
14+
group: "pages"
15+
cancel-in-progress: false
16+
17+
jobs:
18+
build:
19+
runs-on: ubuntu-latest
20+
steps:
21+
- name: Checkout
22+
uses: actions/checkout@v4
23+
24+
- name: Setup Ruby
25+
uses: ruby/setup-ruby@v1
26+
with:
27+
ruby-version: '3.1'
28+
bundler-cache: true
29+
cache-version: 0
30+
31+
- name: Setup Pages
32+
uses: actions/configure-pages@v4
33+
34+
- name: Build with Jekyll
35+
run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}"
36+
env:
37+
JEKYLL_ENV: production
38+
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v3
41+
42+
deploy:
43+
environment:
44+
name: github-pages
45+
url: ${{ steps.deployment.outputs.page_url }}
46+
runs-on: ubuntu-latest
47+
needs: build
48+
steps:
49+
- name: Deploy to GitHub Pages
50+
id: deployment
51+
uses: actions/deploy-pages@v4

00-table-of-contents.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Table of Contents"
4+
---
5+
16
# Lisp in 2025: A Practical Guide to the One True Programming Language
27

38
## Table of Contents

01-introduction.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 1: Introduction - The Eternal Language"
4+
---
5+
16
# Chapter 1: Introduction - The Eternal Language
27

38
> "Lisp isn't a language, it's a building material." - Alan Kay

02-lisp-family-tree.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 2: The Lisp Family Tree"
4+
---
5+
16
# Chapter 2: The Lisp Family Tree
27

38
> "The greatest single programming language ever designed." - Alan Kay on Lisp

03-common-lisp.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 3: Common Lisp - Industrial Strength"
4+
---
5+
16
# Chapter 3: Common Lisp - The Industrial Strength Lisp
27

38
> "Common Lisp is politics, not art." - Scott Fahlman

04-scheme.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 4: Scheme - The Academic Beauty"
4+
---
5+
16
# Chapter 4: Scheme - The Academic Beauty
27

38
> "Programming languages should be designed not by piling feature on top of feature, but by removing the weaknesses and restrictions that make additional features appear necessary." - The Revised⁷ Report on Scheme

05-emacs-lisp.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 5: Emacs Lisp - Editor as Lisp Machine"
4+
---
5+
16
# Chapter 5: Emacs Lisp - Your Editor is a Lisp Machine
27

38
> "Emacs is a great operating system, lacking only a decent editor." - Ancient Programmer Proverb

06-clojure.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 6: Clojure - The Modern Lisp"
4+
---
5+
16
# Chapter 6: Clojure - The Modern Lisp
27

38
> "It is better to have 100 functions operate on one data structure than 10 functions on 10 data structures." - Alan Perlis

07-clojurescript.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 7: ClojureScript - Lisp in the Browser"
4+
---
5+
16
# Chapter 7: ClojureScript - Lisp in the Browser
27

38
> "ClojureScript is the most fun I've had programming in 25 years." - David Nolen

08-development-environment.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
layout: default
3+
title: "Chapter 8: Development Environment"
4+
---
5+
16
# Chapter 8: Setting Up Your Development Environment
27

38
> "A language that doesn't affect the way you think about programming is not worth knowing." - Alan Perlis

0 commit comments

Comments
 (0)