Skip to content

Commit 70f76df

Browse files
파비콘 및 웹 애플리케이션 매니페스트 파일 업데이트. 기존 favicon 경로를 수정하고, 다양한 크기의 아이콘 및 애플리케이션 매니페스트를 추가하여 웹사이트의 아이콘 지원을 향상시켰습니다. 또한, 불필요한 site.webmanifest 파일을 삭제하여 코드베이스를 정리하였습니다.
1 parent ceb34e0 commit 70f76df

8 files changed

Lines changed: 43 additions & 23 deletions

File tree

_layouts/default.html

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,12 @@
2020
{% endfor %}
2121

2222
<!-- Favicon -->
23-
<link rel="icon" type="image/x-icon" href="{{ '/assets/images/favicon.ico' | relative_url }}">
23+
<link rel="icon" type="image/x-icon" href="{{ '/assets/favicons/favicon.ico' | relative_url }}">
24+
<link rel="icon" type="image/svg+xml" href="{{ '/assets/favicons/icon.svg' | relative_url }}">
25+
<link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/favicons/apple-touch-icon.png' | relative_url }}">
26+
<link rel="icon" type="image/png" sizes="192x192" href="{{ '/assets/favicons/android-chrome-192x192.png' | relative_url }}">
27+
<link rel="icon" type="image/png" sizes="512x512" href="{{ '/assets/favicons/android-chrome-512x512.png' | relative_url }}">
28+
<link rel="manifest" href="{{ '/assets/favicons/manifest.webmanifest' | relative_url }}">
2429

2530
<!-- CSS -->
2631
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
23.2 KB
Loading
114 KB
Loading
17.6 KB
Loading

assets/favicons/favicon.ico

8.06 KB
Binary file not shown.

assets/favicons/icon.svg

Lines changed: 15 additions & 0 deletions
Loading
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "실전코딩 기술 블로그",
3+
"short_name": "실전코딩",
4+
"description": "실무에서 배운 개발 노하우와 기술적 인사이트를 공유합니다",
5+
"icons": [
6+
{
7+
"src": "/assets/favicons/android-chrome-192x192.png",
8+
"sizes": "192x192",
9+
"type": "image/png"
10+
},
11+
{
12+
"src": "/assets/favicons/android-chrome-512x512.png",
13+
"sizes": "512x512",
14+
"type": "image/png"
15+
}
16+
],
17+
"theme_color": "#667eea",
18+
"background_color": "#0f1419",
19+
"display": "standalone",
20+
"start_url": "/",
21+
"scope": "/"
22+
}

assets/images/site.webmanifest

Lines changed: 0 additions & 22 deletions
This file was deleted.

0 commit comments

Comments
 (0)