"Pug"의 두 판 사이의 차이

1번째 줄: 1번째 줄:
{{다른뜻|퍼그}}
==개요==
==개요==
;Pug
;Pug
;퍼그, 푸그
;퍼그
* 자바스크립트 템플릿엔진
* 자바스크립트 템플릿엔진
* Jade에서 개명됨
* Jade에서 개명됨

2016년 10월 22일 (토) 22:03 판

  다른 뜻에 대해서는 퍼그 문서를 참조하십시오.

1 개요

Pug
퍼그
  • 자바스크립트 템플릿엔진
  • Jade에서 개명됨

Pug logo.svg

2 사용예시

코드
doctype html
html(lang="en")
  head
    title= pageTitle
    script(type='text/javascript').
      if (foo) bar(1 + 5)
  body
    h1 Pug - node template engine
    #container.col
      if youAreUsingPug
        p You are amazing
      else
        p Get on it!
      p.
        Pug is a terse and simple templating language with a
        strong focus on performance and powerful features.
결과
<!DOCTYPE html>
<html lang="en">
  <head>
    <title>Pug</title>
    <script type="text/javascript">
      if (foo) bar(1 + 5)
    </script>
  </head>
  <body>
    <h1>Pug - node template engine</h1>
    <div id="container" class="col">
      <p>You are amazing</p>
      <p>Pug is a terse and simple templating language with a strong focus on performance and powerful features.</p>
    </div>
  </body>
</html>

3 같이보기

4 참고 자료

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}