Migrate static site to Hugo, fix content rendering/encoding, and deduplicate shared layout blocks#37
Merged
MemsudG merged 4 commits intoeclipse-score:mainfrom Feb 19, 2026
Merged
Conversation
- add Hugo layouts (baseof, single, index) - migrate pages from static/*.html to content/*.md - preserve existing styling/scripts via front matter includes - enable raw HTML rendering for migrated content - fix UTF-8 character encoding issues in migrated files - move original HTML sources to legacy-html/ - update Hugo config (uglyURLs + Goldmark unsafe rendering)
… page content - add shared partials: - layouts/partials/site-header.html - layouts/partials/site-footer.html - update layouts/_default/single.html to include shared partials - remove duplicated header/footer/loading markup from non-home content pages - move page-specific header state into front matter: - active_nav - header_class - header_title - breadcrumb_html - keep existing styles/scripts and page body content unchanged
|
Contributor
|
Everything looks really nice. I just found one small issue: The left and right arrows next to the carousel are blue and should be white. |
…ibutors sliders - show homepage news/contributor nav buttons reliably by scoping slider nav logic to each wrapper - keep white arrows only on about-us dark contributors section - preserve visible hover state for dark-background arrows
Contributor
Author
fixed, and added also arrow buttons on the "Home" site |
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
This PR migrates the website from static HTML to a Hugo-based structure with content in Markdown, while preserving the current design and behavior.
Changes