Skip to content

Commit

Permalink
add the download section
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Sukrieh committed Aug 4, 2009
1 parent 9808f25 commit d5dcfbf
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
@@ -1 +1,2 @@
logs/
public/downloads/*.tar.gz
2 changes: 1 addition & 1 deletion perldancer.pl
Expand Up @@ -3,7 +3,7 @@
use Dancer;
use Template;

my @pages = qw(quickstart documentation contribute about example);
my @pages = qw(quickstart documentation contribute about example download);

get '/' => sub {
debug "GET /";
Expand Down
31 changes: 31 additions & 0 deletions views/download.tt
@@ -0,0 +1,31 @@
<h2>Getting Dancer</h2>

<p>
<em>Dancer is still in development stage.</em>
</p>

<h3>Releases</h3>

<p>
Last release is <a href="/downloads/Dancer-0.9902.tar.gz">0.9902</a>, you can
also check out the <a href="http://search.cpan.org/dist/Dancer/">CPAN page</a>.
</p>

<h3>Cutting-edge</h3>

<p>
If you want to follow precisely the development of the project, you can clone
the Git repository with the following command:
</p>

<pre>
$ git clone git://github.com/sukria/Dancer.git
</pre>

<p>
Or even <a href="http://github.com/sukria/Dancer/toggle_watch">follow the Dancer project</a> on GitHub.
</p>

<p>
Find details about bug reports and patch submission <a href="/contribute">there</a>.
</p>
1 change: 1 addition & 0 deletions views/layouts/main.tt
Expand Up @@ -24,6 +24,7 @@
<li><a href="/quickstart">Quick Start</a></li>
<li><a href="/example">Example</a></li>
<li><a href="/documentation">Documentation</a></li>
<li><a href="/download">Download</a></li>
<li><a href="/contribute">Contribute</a></li>
<li><a href="/about">About</a></li>
</ul>
Expand Down

0 comments on commit d5dcfbf

Please sign in to comment.