add favicon#1
Open
Hellebore wants to merge 6 commits into
Open
Conversation
Author
|
This pull request was cloned from Note: the URL is not a link to avoid triggering a notification on the original pull request. |
Hellebore
commented
Mar 21, 2024
Hellebore
left a comment
Author
There was a problem hiding this comment.
Hey @Hellebore - I've reviewed your changes and they look great!
General suggestions:
- Ensure consistency in referencing external resources, such as favicons, across all HTML files to maintain uniformity and prevent potential loading errors.
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Docstrings: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment to tell me if it was helpful.
Comment on lines
+7
to
+10
| <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | ||
| <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | ||
| <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | ||
| <link rel="manifest" href="/site.webmanifest"> |
Author
There was a problem hiding this comment.
suggestion (code_refinement): Consistency in referencing external resources
Consider using a consistent base URL for external resources across all HTML files to ensure uniformity and reduce potential errors in resource loading.
Suggested change
| <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> | |
| <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> | |
| <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> | |
| <link rel="manifest" href="/site.webmanifest"> | |
| <link rel="apple-touch-icon" sizes="180x180" href="https://xorol.github.io/apple-touch-icon.png"> | |
| <link rel="icon" type="image/png" sizes="32x32" href="https://xorol.github.io/favicon-32x32.png"> | |
| <link rel="icon" type="image/png" sizes="16x16" href="https://xorol.github.io/favicon-16x16.png"> | |
| <link rel="manifest" href="https://xorol.github.io/site.webmanifest"> |
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.
No description provided.