404.html 665 Bytes
Newer Older
Kim Gyeongeun committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
#set($title = "404 Not Found")
<!-- preHeader -->
#parse( "/WEB-INF/view/common/preHeader_mb.vm" )
<body style="font-family: monospace; width: 240px; border: 2px solid black;">
<!--ヘッダー-->
#parse( "/WEB-INF/view/common/header_mb.vm" )
	#set($is-popup = $tools.isPopup($!request.getAttribute("javax.servlet.forward.request_uri")))
	<div>
		<h3>404 Not Found</h3>
	</div><br/>
	<div>
		<font color="red">お探しのページ
			#if($is-popup)
			#else
				<!-- <br>$!{escape.html($!tools.requestUrl)}<br>-->
			#end
			は存在しません。URLをご確認ください。</font>
	</div>
</div>

#parse( "/WEB-INF/view/common/footer_mb.vm" )

</body></html>