diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml
index 72e6aed..5423284 100644
--- a/.github/workflows/lint.yml
+++ b/.github/workflows/lint.yml
@@ -1,6 +1,8 @@
name: Lint Awesome List
-on: [push, pull_request]
+on:
+ pull_request:
+ push: [main]
jobs:
lint:
diff --git a/.gitignore b/.gitignore
index f13fbef..4a50364 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,7 @@
-.DS_Store
-ab-results-README*
+_site
+.sass-cache
+.jekyll-metadata
+_site/
+.sass-cache/
+.jekyll-cache/
+.jekyll-metadata
diff --git a/404.html b/404.html
new file mode 100644
index 0000000..c472b4e
--- /dev/null
+++ b/404.html
@@ -0,0 +1,24 @@
+---
+layout: default
+---
+
+
+
+
+
404
+
+
Page not found :(
+
The requested page could not be found.
+
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 0000000..7bad5f9
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,34 @@
+source "https://rubygems.org"
+
+# Hello! This is where you manage which Jekyll version is used to run.
+# When you want to use a different version, change it below, save the
+# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
+#
+# bundle exec jekyll serve
+#
+# This will help ensure the proper Jekyll version is running.
+# Happy Jekylling!
+gem "jekyll", "~> 3.8.7"
+
+# This is the default theme for new Jekyll sites. You may change this to anything you like.
+gem "minima", "~> 2.0"
+
+# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
+# uncomment the line below. To upgrade, run `bundle update github-pages`.
+# gem "github-pages", group: :jekyll_plugins
+
+# If you have any plugins, put them here!
+group :jekyll_plugins do
+ gem "jekyll-feed", "~> 0.6"
+end
+
+# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
+# and associated library.
+install_if -> { RUBY_PLATFORM =~ %r!mingw|mswin|java! } do
+ gem "tzinfo", "~> 1.2"
+ gem "tzinfo-data"
+end
+
+# Performance-booster for watching directories on Windows
+gem "wdm", "~> 0.1.0", :install_if => Gem.win_platform?
+
diff --git a/Gemfile.lock b/Gemfile.lock
new file mode 100644
index 0000000..08307cc
--- /dev/null
+++ b/Gemfile.lock
@@ -0,0 +1,80 @@
+GEM
+ remote: https://rubygems.org/
+ specs:
+ addressable (2.7.0)
+ public_suffix (>= 2.0.2, < 5.0)
+ colorator (1.1.0)
+ concurrent-ruby (1.1.7)
+ em-websocket (0.5.2)
+ eventmachine (>= 0.12.9)
+ http_parser.rb (~> 0.6.0)
+ eventmachine (1.2.7)
+ ffi (1.13.1)
+ forwardable-extended (2.6.0)
+ http_parser.rb (0.6.0)
+ i18n (0.9.5)
+ concurrent-ruby (~> 1.0)
+ jekyll (3.8.7)
+ addressable (~> 2.4)
+ colorator (~> 1.0)
+ em-websocket (~> 0.5)
+ i18n (~> 0.7)
+ jekyll-sass-converter (~> 1.0)
+ jekyll-watch (~> 2.0)
+ kramdown (~> 1.14)
+ liquid (~> 4.0)
+ mercenary (~> 0.3.3)
+ pathutil (~> 0.9)
+ rouge (>= 1.7, < 4)
+ safe_yaml (~> 1.0)
+ jekyll-feed (0.15.0)
+ jekyll (>= 3.7, < 5.0)
+ jekyll-sass-converter (1.5.2)
+ sass (~> 3.4)
+ jekyll-seo-tag (2.6.1)
+ jekyll (>= 3.3, < 5.0)
+ jekyll-watch (2.2.1)
+ listen (~> 3.0)
+ kramdown (1.17.0)
+ liquid (4.0.3)
+ listen (3.2.1)
+ rb-fsevent (~> 0.10, >= 0.10.3)
+ rb-inotify (~> 0.9, >= 0.9.10)
+ mercenary (0.3.6)
+ minima (2.5.1)
+ jekyll (>= 3.5, < 5.0)
+ jekyll-feed (~> 0.9)
+ jekyll-seo-tag (~> 2.1)
+ pathutil (0.16.2)
+ forwardable-extended (~> 2.6)
+ public_suffix (4.0.6)
+ rb-fsevent (0.10.4)
+ rb-inotify (0.10.1)
+ ffi (~> 1.0)
+ rouge (3.23.0)
+ safe_yaml (1.0.5)
+ sass (3.7.4)
+ sass-listen (~> 4.0.0)
+ sass-listen (4.0.0)
+ rb-fsevent (~> 0.9, >= 0.9.4)
+ rb-inotify (~> 0.9, >= 0.9.7)
+ thread_safe (0.3.6)
+ tzinfo (1.2.7)
+ thread_safe (~> 0.1)
+ tzinfo-data (1.2020.1)
+ tzinfo (>= 1.0.0)
+ wdm (0.1.1)
+
+PLATFORMS
+ ruby
+
+DEPENDENCIES
+ jekyll (~> 3.8.7)
+ jekyll-feed (~> 0.6)
+ minima (~> 2.0)
+ tzinfo (~> 1.2)
+ tzinfo-data
+ wdm (~> 0.1.0)
+
+BUNDLED WITH
+ 1.16.6
diff --git a/Makefile b/Makefile
index d503ec6..40d0e3d 100644
--- a/Makefile
+++ b/Makefile
@@ -1,3 +1,5 @@
+TAILWIND_CSS_VERSION := 1.8.10
+
build: toc
.PHONY: alex
@@ -8,6 +10,17 @@ alex:
lint:
@npx awesome-lint README.md
+.PHONY: static
+static:
+ @npx -p tailwindcss@${TAILWIND_CSS_VERSION} tailwindcss build \
+ ./src/style.css \
+ --config ./tailwind.config.js \
+ --output ./assets/style.css
+
+.PHONY: serve
+serve:
+ bundle exec jekyll serve --drafts --watch --port 4000
+
.PHONY: toc
toc:
@npx doctoc README.md
diff --git a/README.md b/README.md
index 15b69f1..381c827 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,5 @@
+---
+---

diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..2b6fe1f
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,33 @@
+title: Awesome Django
+email: your-email@example.com
+description: >-
+ A curated list of awesome things related to Django. Maintained by
+ William Vincent and Jeff Triplett
+baseurl: "" # the subpath of your site, e.g. /blog
+url: "https://awesome-django.org" # the base hostname & protocol for your site, e.g. http://example.com
+
+# Build settings
+markdown: kramdown
+plugins:
+ - jekyll-feed
+include:
+ - README.md
+exclude:
+ - "*.md"
+ - Gemfile
+ - Gemfile.lock
+ - LICENSE
+ - Makefile
+ - postcss.config.js
+ - tailwind.config.js
+ - src
+defaults:
+ - scope:
+ path: "" # an empty string here means all files in the project
+ values:
+ layout: "default"
+ scope:
+ path: "README.md"
+ values:
+ permalink: "/"
+ layout: "default"
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..308b1d0
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,2 @@
+