diff --git a/website/config.rb b/website/config.rb
index d8feeb6f3..464ba1dc4 100644
--- a/website/config.rb
+++ b/website/config.rb
@@ -1,3 +1,35 @@
+require "net/http"
+
+raise "BINTRAY_API_KEY must be set." if !ENV["BINTRAY_API_KEY"]
+raise "PACKER_VERSION must be set." if !ENV["PACKER_VERSION"]
+
+#-------------------------------------------------------------------------
+# Download the list of Packer downloads
+#-------------------------------------------------------------------------
+
+http = Net::HTTP.new("dl.bintray.com", 80)
+req = Net::HTTP::Get.new("/mitchellh/packer")
+req.basic_auth "mitchellh", ENV["BINTRAY_API_KEY"]
+response = http.request(req)
+
+$packer_files = {}
+response.body.split("\n").each do |line|
+ next if line !~ /\/mitchellh\/packer\/(#{ENV["PACKER_VERSION"]}.+?)\?/
+ filename = $1.to_s
+ os = filename.split("_")[1]
+
+ $packer_files[os] ||= []
+ $packer_files[os] << filename
+end
+
+$packer_files.each do |key, value|
+ value.sort!
+end
+
+#-------------------------------------------------------------------------
+# Configure Middleman
+#-------------------------------------------------------------------------
+
set :css_dir, 'stylesheets'
set :js_dir, 'javascripts'
set :images_dir, 'images'
@@ -13,3 +45,36 @@ configure :build do
activate :minify_html
activate :minify_javascript
end
+
+#-------------------------------------------------------------------------
+# Helpers
+#-------------------------------------------------------------------------
+helpers do
+ def download_arch(file)
+ file.split("_")[2].split(".")[0]
+ end
+
+ def download_os_human(os)
+ if os == "darwin"
+ return "Mac OS X"
+ elsif os == "freebsd"
+ return "FreeBSD"
+ elsif os == "openbsd"
+ return "OpenBSD"
+ elsif os == "Linux"
+ return "Linux"
+ elsif os == "windows"
+ return "Windows"
+ else
+ return os
+ end
+ end
+
+ def download_url(file)
+ "http://dl.bintray.com/mitchellh/packer/#{file}?direct"
+ end
+
+ def latest_version
+ ENV["PACKER_VERSION"]
+ end
+end
diff --git a/website/source/downloads.html.erb b/website/source/downloads.html.erb
new file mode 100644
index 000000000..c34df8ec4
--- /dev/null
+++ b/website/source/downloads.html.erb
@@ -0,0 +1,40 @@
+---
+page_title: "Downloads"
+---
+
+
+
+
Downloads
+ Latest version: <%= latest_version %>
+
+
+
+
+
+
+
+
+ Below are all available downloads for the latest version of Packer
+ (<%= latest_version %>). Please download the proper package for your
+ operating system and architecture.
+