Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 83f8c1cefed28dea72788897ff12e44fc9636063 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<%@ jet
	class="ConfigOverview"
	package="templates"
	imports="org.eclipse.emf.cdo.examples.server.*" %>

<% DemoConfiguration config = (DemoConfiguration)argument; %>
<% String title = "Demo Configuration " + AbstractTemplateServlet.html(config.getName()); %>

<html>
  <header>
	  <title>
			<%=title%>
	  </title>
		<link media="screen" href="gastro.css" type="text/css" rel="stylesheet">
	<header>
<body>

<h1><%=title%></h1>
<table border="0" width="400">
</table>

</body>
</html>

Back to the top