我使用Thymealeaf作为模板管理器建立了一个网站。每个页面都包含一个模板,该模板稍后包含内容。
这是模板。
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
th:fragment="loggedout">
<head th:include="components/meta :: head" />
<body>
<div th:include="components/meta :: js" />
<div th:include="components/header :: loggedin" />
<div class="jumbotron">
<div class="container-fluid">
<div id="content">
<div th:include="this ::content" />
</div>
</div>
</div>
<footer th:include="components/footer :: basic" />
</body>
</html>
如您所见,javascript和css包含在其他地方。
以下是网页示例:
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
th:include="components/layout :: loggedin">
<div th:fragment="content">
<h1>download</h1>
<br></br>
<p>You can download the installer here! Make sure to check out the <a href="getting-started"> getting started page</a>.</p>
<br></br>
<button class="btn btn-md btn-primary " type="submit">download</button>
</div>
</html>
所以,问题是如果没有在servlet容器中运行应用程序就无法查看网站,这种情况我希望尽可能避免。有没有办法让我的设计师更容易查看和更改此网站?或者,是否有专门解决此问题的技术?我做了大量的搜索无济于事。