Skip to content

Commit

Permalink
Add higher quality favicons
Browse files Browse the repository at this point in the history
  • Loading branch information
JakeSteam committed Sep 2, 2024
1 parent e271065 commit 58b5566
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 11 deletions.
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ gem "jekyll", ENV["JEKYLL_VERSION"] if ENV["JEKYLL_VERSION"]
gem "kramdown-parser-gfm" if ENV["JEKYLL_VERSION"] == "~> 3.9"

group :jekyll_plugins do
gem "jekyll-feed", "~> 0.12"
gem "jekyll-feed"
gem "jekyll-paginate"
gem "jekyll-sitemap"
gem "jekyll-seo-tag"
Expand Down
38 changes: 28 additions & 10 deletions _includes/head.html
Original file line number Diff line number Diff line change
@@ -1,15 +1,33 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
{%- seo -%}
<link rel="stylesheet" href="/assets/css/style.css?v={{ site.theme_version }}">
{%- feed_meta -%}
{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
{%- endif -%}

<link
rel="stylesheet"
href="/assets/css/style.css?v={{ site.theme_version }}"
/>
<link
rel="apple-touch-icon"
sizes="180x180"
href="/assets/images/icon/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/assets/images/icon/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/assets/images/icon/favicon-16x16.png"
/>
<link rel="manifest" href="/assets/images/icon/site.webmanifest" />
{%- feed_meta -%} {%- if jekyll.environment == 'production' and
site.google_analytics -%} {%- include google-analytics.html -%} {%- endif -%}
{% if site.open_external_links_in_new_tab != false %}
<script src="/assets/js/new_window.js" defer></script>
<script src="/assets/js/new_window.js" defer></script>
{% endif %}
</head>
Binary file added assets/images/icon/android-chrome-192x192.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 assets/images/icon/android-chrome-512x512.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 assets/images/icon/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 assets/images/icon/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 assets/images/icon/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 assets/images/icon/favicon.ico
Binary file not shown.
1 change: 1 addition & 0 deletions assets/images/icon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/assets/images/icon/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/assets/images/icon/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
Binary file removed favicon.ico
Binary file not shown.

0 comments on commit 58b5566

Please sign in to comment.