%@ include file="imports.jsp"%>
<%@page import="org.openxava.util.Strings"%>
<%@page import="org.openxava.web.style.Themes"%>
:
<%
String nexus = "";
String current = Themes.getCSS(request);
for (String theme: Themes.getAll()) {
String label = Strings.firstUpper(theme.replace(".css", "").replace("-", " "));
if (theme.equals(current)) {
%>
<%=nexus%>
<%=label%>
<%
}
else {
%>
<%=nexus%>
<%=label%>
<%
}
nexus = " - ";
}
%>