No Images Skin
A skin using only HTML and CSS (except for the Grails 'powered-by' image at the bottom)
Home
User
Entry
Blog
Entry List
Create
Id
Blog
Title
Body
Created On
Last Updated
Previous
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <meta name="layout" content="no-img-skin" /> <link rel="stylesheet" href="/sample/css/sample.css"></link> <title>Entry List</title> </head> <body> <div class="body"> <div class="titleSection"> <h1 class="title">Entry List</h1> <div class="pageActions"> <span class="actionButton"><g:link action="create">Create</g:link></span></div> </div> <g:if test="${flash.message}"> <div class="message"> ${flash.message} </div> </g:if> <g:renderDomain domain="${Entry.class}" template="list" value="${entryList}" order="['blog','title','body','createdOn']" exceptWhen="${ { prop -> prop.type == Set.class } }" style="[actions:[[show:'Show'], [edit: 'Edit'], [delete: 'Delete']] ]" /> <div class="paginateButtons"> <g:paginate total="${Entry.count()}" /> </div> <textarea class="codeShare"><g:showGSP view="list"/></textarea> </div> </body> </html>
Powered by