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 not found with id 5
<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>Show Blog</title> </head> <body> <div id="showBlogEntry" class="body"> <g:if test="${flash.message}"> <div class="message">${flash.message}</div> </g:if> <g:if test="${blog}"> <div class="titleSection"> <div class="pageActions"> <span class="actionButton"><g:link action="list">Back to List</g:link></span> <g:renderActions template="show" actions="[[edit: 'Edit'], [delete: 'Delete']]" item="${blog}" /> </div> <h1 class="title">${blog.name}</h1> <div class="author">by <g:renderProperty template="show" domain="Blog" prop="author" value="${blog.author}" /></div> <div class="createdOn">created on <g:renderType template="show" value="${blog.createdOn}"/></div> </div> <div id="entries"> <g:each var="entry" in="${entries}"> <g:renderDomain template="show" domain="Entry" value="${entry}" widget="preview"/> </g:each> </div> </g:if> <textarea class="codeShare"><g:showGSP view="show"/></textarea> </div> </body> </html>
Powered by