Skip to content

Commit

Permalink
Type: Add favicon and Apple Touch Icons (#189)
Browse files Browse the repository at this point in the history
Body:
- Added multiple favicon links to the HTML `<head>` section for improved branding and user experience.
- Included the following icons:
  - `/favicon.ico` as the shortcut icon for browsers.
  - `/apple-touch-icon.png` for Apple devices, with a size of 180x180 pixels.
  - `/favicon-32x32.png` for browsers supporting a 32x32 pixel favicon.
  - `/favicon-16x16.png` for browsers supporting a 16x16 pixel favicon.
- Uploaded the corresponding icon images to ensure they are properly displayed across different platforms and devices.
  • Loading branch information
720Florian authored Oct 3, 2024
1 parent 25fb421 commit 366e2b9
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/jenkins.svg" />
<link href='/favicon.ico' rel='shortcut icon' type='image/x-icon'>
<link href='/apple-touch-icon.png' rel='apple-touch-icon' sizes='180x180'>
<link href='/favicon-32x32.png' rel='icon' sizes='32x32' type='image/png'>
<link href='/favicon-16x16.png' rel='icon' sizes='16x16' type='image/png'>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Jenkins Statistics</title>
<!-- Load necessary scripts for jio-navbar -->
Expand Down
Binary file added public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/favicon.ico
Binary file not shown.

0 comments on commit 366e2b9

Please sign in to comment.