This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
doctype html | |
html(lang="ja") | |
head | |
meta(charset="utf-8") | |
title Pugレッスン | |
body | |
h1 Pug始めました | |
main.main | |
p Pugでhtml作ったよ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul | |
li: a(href="#") List01 | |
li: a(href="#") List02 | |
li: a(href="#") List03 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#id-name DivタグにIDを振る | |
.class-name DivタグにClassをつける |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- var url = "//www.example.com/"; | |
a(href=url) トップページ | |
a(href=url + "contact/") お問い合わせ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ul | |
- for (var i = 0; i <= 3; i++) { | |
.item | |
li List0#{i} | |
- } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- var title = { home: "トップページ" } | |
if title.home | |
h2 #{title.home} | |
else | |
h2 title.lower |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
include inc/_header.pug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//- inc/_layout.pug | |
block main | |
//- index.pug | |
extend inc/_layout | |
block main | |
main.main | |
h2 Pugでhtml作ったよ | |
p Pugって楽しいね!!!! |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//- inc/_layout.pug | |
block js | |
//- index.pug | |
append js | |
script(src="top.js") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mixin list | |
ul | |
li List01 | |
li List02 | |
li List03 | |
+list | |
+list |
OlderNewer