Statistics
| Revision:

root / web-presentation / trunk / eneraptor-web-presentation / grails-app / views / edit / index.gsp @ 86

History | View | Annotate | Download (447 Bytes)

1
<html>
2
	<head>
3
		<meta name="layout" content="main">
4
		<style type="text/css">
5
		html, body {
6
			margin: 0px;
7
			padding: 0px;
8
		} 
9
		</style>
10
	</head>
11
	
12
	<body>
13
		<p>Choose a page to edit:</p>
14
		<g:each in="${pages}" var="page">
15
			<p>* <a href="${g.createLink(action:'edit',params:[contentId:page.contentId])}">${page.contentId}</a></p>
16
		</g:each>
17
		<br />
18
		<p><g:link action="logout">Log out</g:link></p>
19
	</body>
20

    
21
</html>