404.html 752 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 24 25 26 27 28 29
#set($title = "404 Not Found")
<!-- preHeader -->
#parse( "/WEB-INF/view/common/preHeader_sp.vm" )

<body>

<div data-role="page" id="err404" data-theme="f">
	<div class="category" data-role="content" data-theme="d">
		<!--ヘッダー-->
		#parse( "/WEB-INF/view/common/header_sp.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_sp.vm" )
</div>

</body></html>