Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/git/git-scm.com.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Long <jlong@github.com>2018-01-15 18:41:43 +0300
committerJason Long <jlong@github.com>2018-01-15 18:41:43 +0300
commitae85cb031d4b84b765ac3abc322234d17bd597b4 (patch)
tree4158a0af41e8acc7a070c01d0f1744e4a8d26cf9
parent50b1c61131594393a07ce0195f2e4e29ac34e1e9 (diff)
Convert downloads/downloading
-rw-r--r--app/views/downloads/downloading.html.erb52
-rw-r--r--app/views/downloads/downloading.html.haml46
2 files changed, 52 insertions, 46 deletions
diff --git a/app/views/downloads/downloading.html.erb b/app/views/downloads/downloading.html.erb
new file mode 100644
index 00000000..85ccf3f9
--- /dev/null
+++ b/app/views/downloads/downloading.html.erb
@@ -0,0 +1,52 @@
+<%- @section = "downloads" %>
+<%- @subsection = "" %>
+<%- @page_title = "Git - Downloading Package" %>
+
+<% content_for :sidebar do %>
+ <%= render 'shared/book' %>
+<% end %>
+
+<div id="main">
+ <h1>Downloading Git!!</h1>
+ <div class="callout downloading">
+ <h3>Your download is starting...</h3>
+ <p>
+ <%= raw "You are downloading version <strong>#{@download.version.name}</strong> of Git for the <strong>#{@platform.capitalize}</strong> platform. This is the most recent <a href='#{@project_url}'>maintained build</a> for this platform. It was released <strong>#{time_ago_in_words @download.release_date} ago</strong>, on #{@download.release_date.strftime("%Y-%m-%d")}." %>
+ </p>
+ <p>
+ <%= raw "<strong>If your download hasn't started, <a href=\"#{@download.url}\">click here to download manually</a>.</strong>" %>
+ </p>
+ <p class="small">
+ <%= raw "The current source code release is version <strong>#{@latest.name}</strong>. If you want the newer version, you can build it from <a href=\"#{@source_url}\">the source code</a>." %>
+ </p>
+ </div>
+ <iframe frameborder="0" height="1" src="<%= @download.url %>" width="1"></iframe>
+ <h2>Now What?</h2>
+ <p>
+ Now that you have downloaded Git, it's time to start using it.
+ </p>
+ <ul id="download-next-steps">
+ <li>
+ <a href="/book">
+ <img src="/images/icons/nav-read-book.png" />
+ <h3>Read the Book</h3>
+ <p>Dive into the Pro Git book and learn at your own pace.</p>
+ </a>
+ </li>
+ <li>
+ <a href="/downloads/guis">
+ <img src="/images/icons/nav-download-gui.png" />
+ <h3>Download a GUI</h3>
+ <p>Several free and commercial GUI tools are available for the #{@platform.capitalize} platform.</p>
+ </a>
+ </li>
+ <li>
+ <a href="/community">
+ <img src="/images/icons/nav-get-involved.png" />
+ <h3>Get Involved</h3>
+ <p>A knowledgeable Git community is available to answer your questions.</p>
+ </a>
+ </li>
+ </ul>
+</div>
+
diff --git a/app/views/downloads/downloading.html.haml b/app/views/downloads/downloading.html.haml
deleted file mode 100644
index 8c61ff47..00000000
--- a/app/views/downloads/downloading.html.haml
+++ /dev/null
@@ -1,46 +0,0 @@
-- @section = "downloads"
-- @subsection = ""
-- @page_title = "Git - Downloading Package"
-
-- content_for :sidebar do
- = render 'shared/book'
-
-%div#main
- %h1 Downloading Git
-
- %div.callout.downloading
- %h3 Your download is starting...
-
- %p=raw "You are downloading version <strong>#{@download.version.name}</strong> of Git for the <strong>#{@platform.capitalize}</strong> platform. This is the most recent <a href='#{@project_url}'>maintained build</a> for this platform. It was released <strong>#{time_ago_in_words @download.release_date} ago</strong>, on #{@download.release_date.strftime("%Y-%m-%d")}."
-
- %p=raw "<strong>If your download hasn't started, <a href=\"#{@download.url}\">click here to download manually</a>.</strong>"
-
- %p.small=raw "The current source code release is version <strong>#{@latest.name}</strong>. If you want the newer version, you can build it from <a href=\"#{@source_url}\">the source code</a>."
-
- %iframe{:width => 1, :height => 1, :frameborder => 0, :src => @download.url}
-
- %h2 Now What?
-
- %p
- Now that you have downloaded Git, it's time to start using it.
-
- %ul#download-next-steps
- %li
- <a href="/book">
- <img src="/images/icons/nav-read-book.png" />
- <h3>Read the Book</h3>
- <p>Dive into the Pro Git book and learn at your own pace.</p>
- </a>
- %li
- <a href="/downloads/guis">
- <img src="/images/icons/nav-download-gui.png" />
- <h3>Download a GUI</h3>
- <p>Several free and commercial GUI tools are available for the #{@platform.capitalize} platform.</p>
- </a>
- %li
- <a href="/community">
- <img src="/images/icons/nav-get-involved.png" />
- <h3>Get Involved</h3>
- <p>A knowledgeable Git community is available to answer your questions.</p>
- </a>
-