swig -- node模板引擎
layout.html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>{% block title %} index {% endblock %}</title>
{% block head %}{% endblock %}
{% block styles %}{% endblock %}
</head>
<body>
<div class="container">
{% block content %}{% endblock %}
</div>
{% block scripts %}{% endblock %}
</body>
</html>
index.html
{% extends '../common/layout.html' %}
{% block title %} 用户界面 {% endblock %}
{% block head %} {% endblock %}
{% parent %}
<link rel="stylesheet" href="./styles/index.css">
{% endblock %}
{% block content %}
<div>
<h1>hello swig</h1>
<div>
{% endblock %}

浙公网安备 33010602011771号