From 096c4b1f0ce4c6fe276fe382baea1fa8ce5d6f74 Mon Sep 17 00:00:00 2001 From: Charles Fyfe Date: Thu, 28 Dec 2023 15:13:50 -0600 Subject: [PATCH 1/2] explicit ruby and bundler versions --- Dockerfile | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index ccd6637..7d9899c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,6 @@ -FROM alpine:3.13 -RUN apk add --update ruby -RUN apk add \ - build-base \ - ruby-dev \ - libffi-dev \ - ruby-etc \ - zlib-dev +FROM ruby:2 -RUN gem install bundler +RUN gem install bundler -v 2.4.22 ENV BUNDLE_GEMFILE=/tmp/Gemfile COPY Gemfile $BUNDLE_GEMFILE RUN bundle install -j 4 From 5fb2fcf716763923466cfedf08eac1ae5a3631a0 Mon Sep 17 00:00:00 2001 From: Charles Fyfe Date: Thu, 28 Dec 2023 15:51:18 -0600 Subject: [PATCH 2/2] add version dump --- _layouts/default.html | 31 +++++++++++++++++++++++-------- assets/_sass/main.scss | 4 ++++ 2 files changed, 27 insertions(+), 8 deletions(-) diff --git a/_layouts/default.html b/_layouts/default.html index c48aa4e..04572d0 100644 --- a/_layouts/default.html +++ b/_layouts/default.html @@ -4,11 +4,26 @@ - {% include head.html %} - -
- {% include anchor_headings.html h_min=2 html=content anchorBody="" %} -
- - +{% include head.html %} + + + +
+ +
+

Jekyll version: {{ site.github.versions.jekyll }}

+

Liquid version: {{ site.github.versions.liquid }}

+

Jekyll environment: {{ jekyll.environment }}

+
+ + {% include anchor_headings.html h_min=2 html=content anchorBody="" %} +
+ + + + \ No newline at end of file diff --git a/assets/_sass/main.scss b/assets/_sass/main.scss index ed60d8e..7872647 100644 --- a/assets/_sass/main.scss +++ b/assets/_sass/main.scss @@ -56,6 +56,10 @@ main { padding: 0; } +.debug { + border: 1px solid red; +} + h1, h2, h3, h4, h5, h6 { font-family: $sans-font-family; margin-top: 1.5em;