-
Notifications
You must be signed in to change notification settings - Fork 0
Fix index.html: replace Cocoa HTML Writer output with clean HTML5 page and add custom domain #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| thegemstone.org |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| # GitHub Pages | ||
| # loganfinney27.github.io | ||
|
|
||
| A simple personal site hosted with [GitHub Pages](https://pages.github.com/). | ||
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,23 +1,7 @@ | ||||||||||||||||||
| <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> | ||||||||||||||||||
| <!DOCTYPE html> | ||||||||||||||||||
| <html> | ||||||||||||||||||
|
||||||||||||||||||
| <html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Hello World</title> | |
| </head> |
Copilot
AI
Apr 11, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The root <html> element is missing a lang attribute. Adding lang="en" (or the appropriate locale) improves screen reader behavior and general accessibility.
| <html> | |
| <html lang="en"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
README title still uses the GitHub Pages default domain (
loganfinney27.github.io), but this PR adds a custom domain viaCNAME(thegemstone.org). Consider updating the README heading/description to reflect the canonical public URL to avoid confusion for readers.