Last active
October 22, 2015 12:18
-
-
Save iktakahiro/de1c4d6cc59db3e58e4b to your computer and use it in GitHub Desktop.
EJS と gulp を利用した HTML の生成 ref: http://qiita.com/iktakahiro/items/8569ff9ec0158e518393
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
npm -g install gulp | |
npm install ejs gulp gulp-ejs gulp-plumber --save-dev |
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
gulp ejs |
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
gulp.task('ejs', () => { | |
var json = JSON.parse(fs.readFileSync('./var.json')); | |
gulp.src(['./_page/*.ejs']) | |
.pipe(plumber({ | |
handleError: function (err) { | |
console.log(err); | |
this.emit('end'); | |
} | |
})) | |
.pipe(ejs(json)) | |
.pipe(gulp.dest('./_build/')); | |
}); |
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><%= commonTitle %></title> | |
</head> | |
<body> |
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('../_layout/header') -%> | |
<h1>Index ページ</h1> | |
<p>ヘッダとフッタを include しています。</p> | |
<%- include('../_layout/footer') -%> |
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>タイトルです</title> | |
</head> | |
<body> | |
<h1>Index ページ</h1> | |
<p>ヘッダとフッタを include しています。</p> | |
<div id="footer">© 2015 eurie Inc.</div> | |
</body> | |
</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
{ | |
"commonTitle": "タイトルです" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment