html의 <head>태그 안에 들어가는 치환자 들입니다.
RSS 활성화
- 해당 포스트의 "태그"를 메타 데이터로 이용합니다 (1.6에서 추가됨)
-
1
<
meta
http-equiv
=
"Keywords"
content
=
"[##_meta_http_equiv_keywords_##]"
/>
- 블로그의 RSS 버튼을 활성화시키기 위해서는 다음과 같은 코드를 <head></head> 태그 안에 넣어주어야 합니다
-
1234
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##]"
href
=
"[##_rss_url_##]"
/>
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##] : comments"
href
=
"[##_comment_rss_url_##]"
/>
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##] : trackbacks"
href
=
"[##_trackback_rss_url_##]"
/>
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##] : comments + trackbacks"
href
=
"[##_response_rss_url_##]"
/>
-
사용 치환자
- [##_rss_url_##] : RSS 주소
- [##_response_rss_url_##] : 댓글+트랙백 RSS 주소 (1.6에서 추가됨)
- [##_comment_rss_url_##] : 댓글 RSS 주소 (1.6에서 추가됨)
- [##_trackback_rss_url_##] : 트랙백 RSS 주소 (1.6에서 추가됨)
-
ATOM 활성화
- 블로그의 ATOM 버튼을 활성화시키기 위해서는 다음과 같은 코드를 <head></head> 태그 안에 넣어주어야 합니다
-
1234
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##]"
href
=
"[##_atom_url_##]"
/>
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##] : comments"
href
=
"[##_comment_atom_url_##]"
/>
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##] : trackbacks"
href
=
"[##_trackback_atom_url_##]"
/>
<
link
rel
=
"alternate"
type
=
"application/rss+xml"
title
=
"[##_title_##] : comments + trackbacks"
href
=
"[##_response_atom_url_##]"
/>
- 사용 치환자
-
- [##_atom_url_##] : ATOM 주소
- [##_response_atom_url_##] : 댓글+트랙백 ATOM 주소 (1.7에서 추가됨)
- [##_comment_atom_url_##] : 댓글 ATOM 주소 (1.7에서 추가됨)
- [##_trackback_atom_url_##] : 트랙백 ATOM 주소 (1.7에서 추가됨)
브라우저 타이틀
- 브라우저에 블로그 타이틀과 현재 보고 있는 페이지 제목을 나타내 주려면 다음과 같은 코드를 <head></head> 태그 안에 넣어 주면 됩니다.
-
1
<
title
>[##_title_##] <
s_page_title
> :: [##_page_post_title_##]</
s_page_title
></
title
>
-
스타일시트
style.css의 경로는 다음과 같이 작성되어야 합니다 -
1
<
link
rel
=
"stylesheet"
media
=
"screen"
type
=
"text/css"
href
=
"./style.css"
/>
-
파비콘
브라우저의 주소표시줄에 출력되는 사이즈 16 X 16의 아이콘인 파비콘은 다음과 같이 작성되어야 합니다 -
1
<
link
rel
=
"shortcut icon"
href
=
"[##_blog_link_##]favicon.ico"
/>