基本的使用 login.html layout.html 還有header和sidebar和foot都是屬於佈局里的公共樣式,block遵循一個蘿蔔一個坑原則,自己寫特殊的部分。 "ok!使用這個模板引擎來寫一個頁面吧!" ...
基本的使用
const nunjucks = require('nunjucks')
// nunjucks.configure({ autoescape: true });
// const result = nunjucks.renderString('Hello {{ username }}', { username: 'James' });
// console.log(result)
// 這裡的 views 相對路徑是受 node 執行路徑影響的
nunjucks.configure('views', { autoescape: true });
// var result = nunjucks.render('index.html', { foo: 'bar' });
var result = nunjucks.render('login.html');
console.log(result)
login.html
{% extends "layout.html" %}
{% block body %}
<h1>這是登陸頁</h1>
{% endblock %}
{% block script %}
<script>
window.alert('hello login')
</script>
{% endblock %}
layout.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<link rel="stylesheet" href="normalize.css">
{% block style %}
{% endblock %}
</head>
<body>
{% include "header.html" %}
{% include "sidebar.html" %}
{% block body %}
{% endblock %}
{% include "footer.html" %}
<script src="jquery.js"></script>
{% block script %}
{% endblock %}
</body>
</html>
還有header和sidebar和foot都是屬於佈局里的公共樣式,block遵循一個蘿蔔一個坑原則,自己寫特殊的部分。