Always display footer and sneks on all pages#339
Merged
JesperDramsch merged 1 commit intomainfrom Apr 18, 2026
Merged
Conversation
The default layout had the footer and sneks.html include in a mutually- exclusive if/else gated on page.include_footer. When commit 503f54a set include_footer: true on index.html to fix the footer on the home page, the snakes silently disappeared from every page using the default layout. Every other layout (conference, post, summary, year) always renders the footer, so the include_footer flag has no legitimate reason to exist. Always render both the footer and the snakes, and drop the flag from home.html, search.html, and index.html. https://claude.ai/code/session_01C51cqWMT6tmAKnjJDWB4H9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Removed conditional footer rendering logic to ensure the footer and sneks are displayed on all pages consistently.
Changes
include_footerconditional check from_layouts/default.htmlthat previously controlled whether to show the footer or sneksfooter.htmlandsneks.htmlare always included on every pageinclude_footer: truefront matter from:_layouts/home.html_layouts/search.htmlindex.htmlImplementation Details
Previously, pages could control footer visibility through the
include_footerfront matter variable. This change simplifies the layout by removing that conditional logic and ensuring consistent footer/sneks display across the entire site. The footer and sneks components are now unconditionally rendered in the default layout.https://claude.ai/code/session_01C51cqWMT6tmAKnjJDWB4H9