Clean-up Dancer Skeleton
- Put "Dancer example" in views/index.tt
- empty or remove public/css/style.css
- remove footer from views/layouts/main.tt
examples/1/D2-Ajax/views/index.tt
Hello World!
examples/1/D2-Ajax/views/layouts/main.tt
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-type" content="text/html; charset=<% settings.charset %>" /> <title>D2::Ajax</title> <link rel="stylesheet" href="<% request.uri_base %>/css/style.css" /> <!-- Grab jQuery from a CDN, fall back to local if necessary --> <script src="//code.jquery.com/jquery-1.11.1.min.js"></script> <script type="text/javascript">/* <![CDATA[ */ !window.jQuery && document.write('<script type="text/javascript" src="<% request.uri_base %>/javascripts/jquery.js"><\/script>') /* ]]> */</script> </head> <body> <% content %> <div id="footer"> Powered by <a href="http://perldancer.org/">Dancer2</a> <% dancer_version %> </div> </body> </html>