使用 SpringSource Slices 进行可插拔样式
自从我们 宣布 SpringSource Slices 以来,许多用户和客户都询问了如何使用 Slices 使其网站的样式和品牌可插拔。在本篇博文中,我将演示使用 Slices 是多么容易。
可插拔样式
我有一个标准的 war 文件,名为 styled.host.war,其中包含一个非常简单的 index.html 页面<html>
<head>
<title>SpringSource Slices Pluggable Styling Demonstration</title>
<link rel="StyleSheet" href="styles/main.css" type="text/css" />
</head>
<body>
<div class="header">
<div class="title">SpringSource Slices</div>
<div class="subtitle">Pluggable Styling Demonstration</div>
</div>
</body>
</html>
如您所见,它正在查找 CSS 文件……