mirror of
https://github.com/cotes2020/jekyll-theme-chirpy.git
synced 2025-10-20 17:53:45 +00:00
15 lines
655 B
HTML
15 lines
655 B
HTML
<!--
|
|
The Favicons for Web, Android, Microsoft, and iOS (iPhone and iPad) Apps
|
|
Generated by: https://realfavicongenerator.net/
|
|
-->
|
|
|
|
{% capture favicon_path %}{{ '/assets/img/favicons' | relative_url }}{% endcapture %}
|
|
|
|
<link rel="icon" type="image/png" href="{{ favicon_path }}/favicon-96x96.png" sizes="96x96">
|
|
<link rel="icon" type="image/svg+xml" href="{{ favicon_path }}/favicon.svg">
|
|
<link rel="shortcut icon" href="{{ favicon_path }}/favicon.ico">
|
|
<link rel="apple-touch-icon" sizes="180x180" href="{{ favicon_path }}/apple-touch-icon.png">
|
|
{% if site.pwa.enabled %}
|
|
<link rel="manifest" href="{{ favicon_path }}/site.webmanifest">
|
|
{% endif %}
|