Diff 142be779478927fe216e613dfb5dc7a287cea629 to Home
Style select
diff --git a/en/Home.org b/en/Home.org
new file mode 100644
index 0000000..a26261c
--- /dev/null
+++ b/en/Home.org
@@ -0,0 +1,64 @@
+* Ramaze
+Ramaze is a simple, light and modular open-source web application framework written in Ruby.
+
+| Learn More | Get Started | Get Involved |
+|---------------+-------------+--------------|
+| [[Screencasts]] | [[Download]] | [[http://java.freenode.net/?channel=ramaze][Chat]] |
+| [[http://book.ramaze.net][Book]] | [[Walkthrough]] | [[http://groups.google.com/group/ramaze][Discuss]] |
+| [[Features]] | [[Tutorials]] | [[Promote]] |
+| [[Benchmarks]] | [[Walkthrough#examples][Examples]] | [[Contributing][Contribute]] |
+| [[Principles]] | [[Deployment]] | [[Innate][Next generation]] |
+| [[Documentation]] | [[FAQ]] | |
+
+
+** Hello World Example
+
+{{{ ruby
+require 'ramaze'
+
+class MainController < Ramaze::Controller
+ def index
+ "Hello, World!"
+ end
+end
+
+Ramaze.start
+}}}
+
+
+** Development
+
+ * [[http://github.com/manveru/ramaze][GitHub hosted repository]]
+ * [[http://doc.rubyists.com/ramaze+innate/][YARD Documentation]]
+
+** Recent Patches
+[[feed:http://github.com/feeds/manveru/commits/ramaze/master]]
+
+** Recent Google Group Posts
+[[feed:http://groups.google.com/group/ramaze/feed/rss_v2_0_msgs.xml]]
+
+** Other Frameworks
+
+ * [[http://github.com/botanicus/rango][Rango]], ultralightweight, ultracustomizable, ultracool web framework inspired by Django
+ * [[http://borges.rubyforge.org/][Borges]], continuations based ruby web-framework originally ported from SeaSide
+ * [[http://camping.rubyforge.org/files/README.html][Camping]], _why's 4k micro-framework
+ * [[http://cerise.rubyforge.org/][Cerise]], web-framework modeled on J2EE app servers
+ * [[http://chneukirchen.org/repos/coset/][Coset]], a [[http://pastie.caboo.se/pastes/54404][simple]] RESTful mapper for Rack
+ * [[http://chneukirchen.org/talks/euruko-2007/chneukirchen-euruko2007-introducing-rack.pdf][Rack]], the [[http://rack.rubyforge.org/][Ruby web-server interface]] and [[http://macournoyer.wordpress.com/2007/12/14/rack-the-framework-framework/][framework]]
+ * [[http://deveiate.org/projects/Arrow][Arrow]], a web-app framework for Apache+mod_ruby
+ * [[http://enigo.com/projects/iowa/index.html][IOWA]]
+ * [[http://groups.google.com/group/eventmachine/browse_thread/thread/4c178b9f8f31f9d9][Unicycle]], an EventMachine based RESTful framework
+ * [[http://halcyon.rubyforge.org/][Halcyon]], a JSON web-app framework built on Rack
+ * [[http://merbivore.com/][Merb]]
+ * [[http://rubyforge.org/projects/maveric][Maveric]], like Camping but without the magic
+ * [[http://rubywaves.com/][Waves]], a Ruby web-framework that uses Sequel as an ORM
+ * [[http://serverside.rubyforge.org/][ServerSide]], a ruby web-server and [[http://pastie.textmate.org/125318][framework]] with persistent connection & http streaming support
+ * [[http://sinatra.rubyforge.org/][Sinatra]], classy web-development dressed in a DSL
+ * [[http://vintage.devjavu.com/][Vintage]], a [[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/286221][simple framework]] for rendering templates
+ * [[http://wisteria.swiftcore.org/][Wisteria]], a super-fast microframework
+ * [[http://wuby.org][Wuby]], another [[http://www.rubyinside.com/wuby-another-light-weight-web-framework-for-ruby-654.html][light-weight web application framework]]
+ * [[http://www.mackframework.com/][Mack]], a Rack-based Ruby web framework.
+ * [[http://www.nitroproject.org/][Nitro]]
+ * [[http://www.ntecs.de/projects/wee/doc/rdoc/][Wee]], a [[http://rubyforge.org/projects/wee][ruby]] [[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/128432][web-framework]] with support for [[http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/131158][continuations]]
+ * [[http://www.rubyonrails.org/][Ruby on Rails]]
+
