,

티스토리 스킨 제작시 skin.html을 찾을수 없습니다 style.css를 찾을수 없습니다

Posted by Zento
2024. 4. 26. 21:33 컴퓨터정보

티스토리에서 나만의 스킨을 만들기 위해

스킨 보관함에서 빈 파일을 등록하려고 하면

 

style.css를 찾을수 없습니다. 

혹은

skin.html을 찾을수 없습니다. 라고 하며 오류 팝업창이 뜨고 적용이 안되는데

 

이 오류는 기본 코드를 적지 않고 업로드할때 뜨더라고요

 

하단의 코드를 적고 업로드하면 정상적용 되니

입력해서 사용하시길 바랍니다.

 

 

style.css

@charset "UTF-8";

 

 

index.xml

(티스토리 매뉴얼의 스킨 정보 파일 복붙 / 하단 공식 티스토리 링크에서 복붙가능)

스킨 정보 파일 (index.xml) · GitBook (tistory.github.io)

 

<?xml version="1.0" encoding="utf-8"?>
<skin>
  <information>
    <name>기본 스킨</name>
    <version>1.1</version>
    <description>
      <![CDATA[웹표준을 준수한 XHTML 기반의 Tistory 기본 스킨입니다.]]>
    </description>
    <license>
      <![CDATA[자유롭게 수정이 가능하며, 저작권 표시하에 재배포 가능합니다.]]>
    </license>
  </information>
  <author>
    <name>tistory</name>
    <homepage>http://notice.tistory.com</homepage>
    <email>tistoryblog@daum.net</email>
  </author>
  <default>
    <recentEntries>5</recentEntries>
    <recentComments>5</recentComments>
    <recentTrackbacks>5</recentTrackbacks>
    <itemsOnGuestbook>10</itemsOnGuestbook>
    <tagsInCloud>30</tagsInCloud>
    <sortInCloud>3</sortInCloud>
    <expandComment>0</expandComment>
    <expandTrackback>0</expandTrackback>
    <lengthOfRecentNotice>25</lengthOfRecentNotice>
    <lengthOfRecentEntry>27</lengthOfRecentEntry>
    <lengthOfRecentComment>30</lengthOfRecentComment>
    <lengthOfRecentTrackback>30</lengthOfRecentTrackback>
    <lengthOfLink>30</lengthOfLink>
    <showListOnCategory>1</showListOnCategory>
    <showListOnArchive>1</showListOnArchive>
    <commentMessage>
      <none>댓글이 없습니다.</none>
      <single>댓글 &lt;span class="cnt"&gt;하나&lt;/span&gt; 달렸습니다.</single>
    </commentMessage>
    <trackbackMessage>
      <none>받은 트랙백이 없고</none>
      <single>트랙백이 &lt;span class="cnt"&gt;하나&lt;/span&gt;이고</single>
    </trackbackMessage>
    <tree>
      <color>000000</color>
      <bgColor>ffffff</bgColor>
      <activeColor>000000</activeColor>
      <activeBgColor>eeeeee</activeBgColor>
      <labelLength>27</labelLength>
      <showValue>1</showValue>
    </tree>
    <contentWidth>500</contentWidth>
  </default>
</skin>

 

 

 

skin.html

(티스토리 매뉴얼의 사용예 복붙  / 하단 공식 티스토리 링크에서 복붙가능)

공통 · GitBook (tistory.github.io)

 

혹은 기본 html 코드 (*링크에 위하면 <s_t3> 티스토리 공통 javascript 삽입 필수) 

 


<!DOCTYPE html>
<html lang="en">
  <head>
<meta charset="UTF-8">
<meta name="viewport"
content="user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, width=device-width">
<title>'컴퓨터정보' 카테고리의 글 목록</title>
<link rel="alternate" type="application/rss+xml" title="*Shopkers*" href="https://shopkers.tistory.com/rss" />
<link rel="stylesheet" href="./style.css">
<!--[if lt IE 9]>
<script src="//t1.daumcdn.net/tistory_admin/lib/jquery/jquery-1.12.4.min.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="//t1.daumcdn.net/tistory_admin/lib/jquery/jquery-3.2.1.min.js"></script>
<script src="./images/custom.js"></script>
<!--<![endif]-->
</head>
<body>
  <s_t3>

  </s_t3>
</body>

</html>

 

 

 

공식 티스토리 스킨 가이드

https://tistory.github.io/document-tistory-skin/