Migrate Jekyll _layouts to Hugo layouts/_default - #944
Merged
Conversation
MakisH
reviewed
Aug 6, 2026
Member
There was a problem hiding this comment.
I did a quick sanity check, here are some minor comments to consider; nothing blocking at the moment.
I cannot build the website at this state, it still needs #945 (and we should prioritize a CI workflow to test this on every PR).
MakisH
approved these changes
Aug 9, 2026
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.
This PR replaces the legacy Jekyll _layouts with standard Hugo equivalents (layouts/_default). During the port, I also cleaned up some of dead Javascript code (unused map/sidebar scripts) and fixed a bug where the footer was rendering twice on posts.
This establishes the baseline layout structure needed before migrating the actual content sections and shortcodes.
Also added the .gitignore entries for hugo
Short description of files:
layouts/_default/baseof.html: Provides the shared web document shell, redirects, navigation, sidebar, footer, analytics, and site scripts.layouts/_default/list.html: Renders section pages with summaries, table of contents, edit metadata, compatibility-aware content, and child-page links.layouts/_default/none.html: Provides a minimal layout for pages that only need compatibility-aware content rendering.layouts/_default/page.html: Renders standard pages with summaries, metadata, tags, breadcrumbs, and translated legacy content.layouts/_default/single.html: Renders individual content pages with summaries, metadata, tags, breadcrumbs, and translated legacy content.layouts/partials/compat_content.html: Converts imported Jekyll callouts, inline includes, andsite.*values into Hugo-renderable content.