-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] SEO setting for google, naver
- Loading branch information
Showing
1 changed file
with
51 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,54 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>오동동</title> | ||
|
||
<base href="/" /> | ||
|
||
<meta property="og:title" content="오동동" /> | ||
<meta | ||
property="og:image" | ||
content="https://bucket-odongdong.s3.ap-northeast-2.amazonaws.com/default/%EC%B9%B4%EC%B9%B4%EC%98%A4_%EA%B3%B5%EC%9C%A0_%EC%9D%B4%EB%AF%B8%EC%A7%80.png" | ||
/> | ||
<meta property="og:description" content="주변 화장실을 찾거나, 손쉽게 등록해보세요!" /> | ||
|
||
<meta name="color-scheme" content="light dark" /> | ||
<meta | ||
name="viewport" | ||
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" | ||
/> | ||
<meta name="format-detection" content="telephone=no" /> | ||
<meta name="msapplication-tap-highlight" content="no" /> | ||
|
||
<link rel="icon" type="image/png" href="assets/icon/logo-blue.png" /> | ||
|
||
<!-- add to homescreen for ios --> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
|
||
<!-- apple touch icon for homescreen --> | ||
<link rel="apple-touch-icon" href="assets/icon/logo-blue.png" /> | ||
|
||
<!-- naver map --> | ||
<script | ||
type="text/javascript" | ||
src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=dg8ryxra1s" | ||
></script> | ||
</head> | ||
|
||
<body> | ||
<app-root></app-root> | ||
</body> | ||
<head> | ||
<meta charset="utf-8" /> | ||
<title>오동동 - 내 주변 화장실</title> | ||
|
||
<meta name="keywords" content="오동동, odongdong, 화장실, 주변 화장실, 공공 화장실" /> | ||
<meta name="description" content="주변 화장실을 찾거나, 손쉽게 등록해보세요!" /> | ||
|
||
<base href="/" /> | ||
|
||
<meta property="og:title" content="오동동" /> | ||
<meta | ||
property="og:image" | ||
content="https://bucket-odongdong.s3.ap-northeast-2.amazonaws.com/default/%EC%B9%B4%EC%B9%B4%EC%98%A4_%EA%B3%B5%EC%9C%A0_%EC%9D%B4%EB%AF%B8%EC%A7%80.png" | ||
/> | ||
<meta property="og:description" content="주변 화장실을 찾거나, 손쉽게 등록해보세요!" /> | ||
<meta property="og:url" content="https://odongdong.site" /> | ||
|
||
<meta name="author" content="odongdong" /> | ||
|
||
<!-- 네이버 소유권 인증 --> | ||
<meta name="naver-site-verification" content="7cb812ee12b4521b590faedbe189393259445fd1" /> | ||
|
||
<meta name="robots" content="index, follow" /> | ||
|
||
<meta name="color-scheme" content="light dark" /> | ||
<meta | ||
name="viewport" | ||
content="viewport-fit=cover, width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" | ||
/> | ||
<meta name="format-detection" content="telephone=no" /> | ||
<meta name="msapplication-tap-highlight" content="no" /> | ||
|
||
<link rel="icon" type="image/png" href="assets/icon/logo-blue.png" /> | ||
|
||
<!-- add to homescreen for ios --> | ||
<meta name="apple-mobile-web-app-capable" content="yes" /> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black" /> | ||
|
||
<!-- apple touch icon for homescreen --> | ||
<link rel="apple-touch-icon" href="assets/icon/logo-blue.png" /> | ||
|
||
<!-- naver map --> | ||
<script | ||
type="text/javascript" | ||
src="https://openapi.map.naver.com/openapi/v3/maps.js?ncpClientId=dg8ryxra1s" | ||
></script> | ||
</head> | ||
|
||
<body> | ||
<app-root></app-root> | ||
</body> | ||
</html> |