728x90

just the docs

Jekyll의 유명한 테마중 하나이다.

GitHub Page에 배포도 가능하고 군더더기 없고 엄청 깔끔하다.

티스토리도 just the docs 테마가 있으면 적용해보고 싶다.

 

https://just-the-docs.github.io/just-the-docs/

 

Home

Just the Docs is a responsive Jekyll theme with built-in search that is easily customizable and hosted on GitHub Pages.

just-the-docs.github.io

 

728x90

'Web > HTML' 카테고리의 다른 글

robots.txt - 사이트 접근 설정  (0) 2023.04.01
textarea 엔터  (0) 2023.04.01
type=password 없이 입력 문자 마스킹  (0) 2023.03.29
728x90

사이트 접근 설정

사이트URL/robots.txt

사이트 구축 후 구글, 네이버, 다음 등 검색 엔진이 어디까지 크롤링해 갈수 있는지 설정

 

[robots.txt]

User-agent: *
Disallow: /
Allow : /$

[전체 서버에서 모든 로봇을 제외]

er-agent: *
Disallow: /

[모든 로봇의 완전한 접근을 허용]

User-agent: *
Disallow:

(또는 빈 "/robots.txt" 파일을 만들거나 전혀 사용하지 마십시오)

[서버의 일부에서 모든 로봇을 제외]

User-agent: *
Disallow: /cgi-bin/
Disallow: /tmp/
Disallow: /junk/

[단일 로봇을 제외]

User-agent: BadBot
Disallow: /


[단일 로봇을 허용]

User-agent: Google
Disallow:

User-agent: *
Disallow: /


[하나를 제외한 모든 파일을 제외]

User-agent: *
Disallow: /~joe/stuff/

[허용되지 않는 모든 페이지를 명시적으로 금지]

User-agent: *
Disallow: /~joe/junk.html
Disallow: /~joe/foo.html
Disallow: /~joe/bar.html

 

 

http://www.robotstxt.org/

 

The Web Robots Pages

The Web Robots Pages Web Robots (also known as Web Wanderers, Crawlers, or Spiders), are programs that traverse the Web automatically. Search engines such as Google use them to index the web content, spammers use them to scan for email addresses, and they

www.robotstxt.org

 

728x90

'Web > HTML' 카테고리의 다른 글

just the docs  (0) 2023.04.03
textarea 엔터  (0) 2023.04.01
type=password 없이 입력 문자 마스킹  (0) 2023.03.29
728x90

<p style="white-space: pre-line;">${item.replyText }</p>

728x90

'Web > HTML' 카테고리의 다른 글

just the docs  (0) 2023.04.03
robots.txt - 사이트 접근 설정  (0) 2023.04.01
type=password 없이 입력 문자 마스킹  (0) 2023.03.29
728x90

type=password 없이 입력 문자 마스킹

@font-face {
  font-family: 'password';
  font-style: normal;
  font-weight: 400;
  src: url(https://jsbin-user-assets.s3.amazonaws.com/rafaelcastrocouto/password.ttf);
}

input.key {
  font-family: 'password';
  width: 100px; height: 16px;  
}

<p>Password: <input class="key" type="text" autocomplete="off" /></p>

password.ttf
0.12MB

https://stackoverflow.com/questions/22457344/masking-input-characters-without-type-password

 

Masking input characters without type=password

So I have a problem with newer browsers saving passwords. Say I have a password box like so: <input type="password" autocomplete="off" /> New browsers like IE11 and Safari in iOS 7.1 have s...

stackoverflow.com

 

728x90

'Web > HTML' 카테고리의 다른 글

just the docs  (0) 2023.04.03
robots.txt - 사이트 접근 설정  (0) 2023.04.01
textarea 엔터  (0) 2023.04.01

+ Recent posts