구글 블로그스팟(Blogspot) 카테고리 첫 페이지에 글제목만 목록으로 표시하는 HTML 태그 설정
1. 내블로그에서 템플릿을 선택하고, HTML 편집을 선택한다.
2. <Ctrl+F>로
"<b:include data='post' name='post'/>"를 찾아 삭제하고
그 자리에 아래 명령어를 넣어준다.
『 <!--Lavel and archive page title only hack Start-->
<b:if cond='data:blog.searchLabel'>
<h3 class='title-only'><a expr:href='data:post.url'><data:post.title/></a><font size='2'> </font></h3>
<b:else/>
<b:if cond='data:blog.pageType == "archive"'>
<h3 class='title-only'><a expr:hred='data:post.url'><data:post.title/></a><font size='2'> </font></h3>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
</b:if>
<!--Label and archive page title only hack End-->』
<b:if cond='data:blog.searchLabel'>
<h3 class='title-only'><a expr:href='data:post.url'><data:post.title/></a><font size='2'> </font></h3>
<b:else/>
<b:if cond='data:blog.pageType == "archive"'>
<h3 class='title-only'><a expr:hred='data:post.url'><data:post.title/></a><font size='2'> </font></h3>
<b:else/>
<b:include data='post' name='post'/>
</b:if>
</b:if>
<!--Label and archive page title only hack End-->』
3. 변경사항을 저장하면... 끝~!


