我不想在我的项目的每个视图上设置我的资产(CSS / JS,菜单等)。有没有办法设置基本模板,然后调用视图只是为了填充它的主体?
示例:
<!-- my base template -->
<html>
<head>
<!-- my assets here -->
</head>
<body>
<%= view.render() %> <!-- example of where I would render the views -->
</body>
</html>
我怎么能这样做?