jade中文文档:http://www.nooong.com/docs/jade_chinese.htm
layui中文文档:https://www.layui.com/doc/element/layout.html
angular1.x : http://www.runoob.com/angularjs/angularjs-tutorial.html
一,jade + angular公用模板
layout.jade
doctype html
html
head
title= title
- var basePath = "http://localhost:3000"
link(rel='stylesheet', href= basePath + '/thirdParty/layui/css/layui.css')
link(rel='stylesheet', href= basePath + '/stylesheets/style.css')
block page_style
body(ng-app="app").layui-layout-body
div.layui-body
block content
script(src=basePath + '/thirdParty/angular.1.6.9/angular.min.js')
script(src=basePath + '/thirdParty/layui/layui.js')
script(type='text/javascript', src=basePath + '/javascripts/main.js')
block page_script
公用模板的作用在于后期维护十分方便,其他页面只需引用模板即可;