<?xml version=“1.0” ?> <!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.1//EN” “www.w3.org/TR/xhtml11/DTD/xhtml11.dtd”> <html xmlns=“www.w3.org/1999/xhtml”>
<head> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="expires" content="-1" /> <%= css '/css/jquery.mobile.css' %> <%= js_for '/js/jquery.js', '/js/jquery.mobile.js' %> </head> <body > <div data-role="page" id="confirm"> <div data-role="header"> <h1><%= h @model_name.camel_case %> Confirm</h1> </div> <div data-role="content"> <h1>Delete?</h1> <a href="<%= r(:destroy, @model_name, @resource.id) %>" data-ajax="false" data-role="button" data-icon="delete">Delete</a> <a href="#" data-role="button" data-icon="back" data-rel="back" data-transition="pop">Cansel</a> </div> </div> </body>
</html>