3 Credit goes to the Ruby on Rails team for this page
4 has been heavily based on the default Rails page that is
5 built with a scaffolded application.
7 Thanks a lot to them for their work.
9 See Ruby on Rails if you want a kickass framework in Ruby:
10 http://www.rubyonrails.org/
15 <ul id="sidebar-items">
17 <h3>Join the community</h3>
20 <li><a href="http://perldancer.org/">PerlDancer</a></li>
21 <li><a href="http://twitter.com/PerlDancer/">Official Twitter</a></li>
22 <li><a href="http://github.com/sukria/Dancer/">GitHub Community</a></li>
27 <h3>Browse the documentation</h3>
31 href="http://search.cpan.org/dist/Dancer/lib/Dancer/Introduction.pod">Introduction</a></li>
32 <li><a href="http://search.cpan.org/dist/Dancer/lib/Dancer/Cookbook.pod">Cookbook</a></li>
33 <li><a href="http://search.cpan.org/dist/Dancer/lib/Dancer/Deployment.pod">Deployment Guide</a></li>
35 href="http://search.cpan.org/dist/Dancer/lib/Dancer/Tutorial.pod"
36 title="a tutorial to build a small blog engine with Dancer">Tutorial</a></li>
41 <h3>Your application's environment</h3>
44 <li>Location: <code>/home/user/Documents/projects/projtp</code></li>
45 <li>Template engine: <code><% settings.template %></code></li>
46 <li>Logger: <code><% settings.logger %></code></li>
47 <li>Environment: <code><% settings.environment %></code></li>
57 <h1>Perl is dancing</h1>
58 <h2>You’ve joined the dance floor!</h2>
61 <div id="getting-started">
62 <h1>Getting started</h1>
63 <h2>Here’s how to get dancing:</h2>
65 <h3><a href="#" id="about_env_link">About your application's environment</a></h3>
67 <div id="about-content" style="display: none;">
72 <td><tt>5.010001</tt></td>
75 <td>Dancer version</td>
76 <td><tt>1.2003</tt></td>
80 <td><tt><% settings.apphandler %></tt></td>
84 <td><tt>/home/user/Documents/projects/projtp</tt></td>
87 <td>Template engine</td>
88 <td><tt><% settings.template %></tt></td>
91 <td>Logger engine</td>
92 <td><tt><% settings.logger %></tt></td>
95 <td>Running environment</td>
96 <td><tt><% settings.environment %></tt></td>
102 <script type="text/javascript">
103 $('#about_env_link').click(function() {
104 $('#about-content').slideToggle('fast', function() {
113 <h2>Tune your application</h2>
116 Your application is configured via a global configuration file,
117 <tt>config.yml</tt> and an "environment" configuration file,
118 <tt>environments/development.yml</tt>. Edit those files if you
119 want to change the settings of your application.
124 <h2>Add your own routes</h2>
127 The default route that displays this page can be removed,
128 it's just here to help you get started. The template used to
129 generate this content is located in
130 <code>views/index.tt</code>.
131 You can add some routes to <tt>lib/projtp.pm</tt>.
136 <h2>Enjoy web development again</h2>
139 Once you've made your changes, restart your standalone server
140 (bin/app.pl) and you're ready to test your web application.