mirror of
https://github.com/Prominence/grails-translations-plugin.git
synced 2026-01-09 10:56:41 +03:00
19 lines
445 B
Plaintext
19 lines
445 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title><g:if env="development">Grails Runtime Exception</g:if><g:else>Error</g:else></title>
|
|
<meta name="layout" content="main">
|
|
<g:if env="development"><asset:stylesheet src="errors.css"/></g:if>
|
|
</head>
|
|
<body>
|
|
<g:if env="development">
|
|
<g:renderException exception="${exception}" />
|
|
</g:if>
|
|
<g:else>
|
|
<ul class="errors">
|
|
<li>An error has occurred</li>
|
|
</ul>
|
|
</g:else>
|
|
</body>
|
|
</html>
|