Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/main/resources/static/css/search.css
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
}
.petty-list-item-img-wrapper {
flex: 0 0 180px;
max-height: 150px;
max-height: 100%;
overflow: hidden;
border-top-left-radius: var(--border-radius-md); /* 컨테이너 radius 와 일치 */
border-bottom-left-radius: var(--border-radius-md);
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 src/main/resources/static/favicon/favicon.ico
Binary file not shown.
3 changes: 3 additions & 0 deletions src/main/resources/static/favicon/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 21 additions & 0 deletions src/main/resources/static/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "MyWebSite",
"short_name": "MySite",
"icons": [
{
"src": "/web-app-manifest-192x192.png",
"sizes": "192x192",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "/web-app-manifest-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
21 changes: 20 additions & 1 deletion src/main/resources/templates/layouts/defaultLayout.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,31 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">

<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<link rel="shortcut icon" href="/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<!-- og tag -->
<meta
property="og:title"
content="PETTY - 반려동물과 함께 떠나는 완벽한 여행"
/>
<meta
property="og:description"
content="우리 아이(🐶🐱)와 여행을 떠나고 싶다면? PETTY가 최적의 숙소, 관광지, 음식점을 추천해 줄게요! 🐾"
/>
<meta
property="og:image"
content="https://github.com/user-attachments/assets/42edc0f5-5e02-4709-97c5-3009ed6cdeb2"
/>

<title layout:title-pattern="$CONTENT_TITLE$ | PETTY"></title>
<link rel="stylesheet" th:href="@{/css/common.css}" />
<link rel="stylesheet" th:href="@{/css/header.css}" />
<link rel="stylesheet" th:href="@{/css/navbar.css}" />
<link rel="stylesheet" th:href="@{/css/loading.css}" />

<th:block layout:fragment="css"></th:block>
</head>
<body onclick="closeMenuOnClickOutside(event)">
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/templates/recommendation_result.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
/* 이미지가 없을 때를 위한 플레이스홀더 스타일 (search.css 와 유사하게 또는 공통화) */
.petty-list-item-img-placeholder {
width: 180px;
height: 150px;
height: 100%;
background-color: #f0f0f0;
display: flex;
justify-content: center;
Expand Down