github.com/ryanslade/nomad@v0.2.4-0.20160128061903-fc95782f2089/website/source/downloads.html.erb (about) 1 --- 2 layout: "downloads" 3 page_title: "Download Nomad" 4 sidebar_current: "downloads-nomad" 5 description: |- 6 Download Nomad 7 --- 8 9 <h1>Download Nomad</h1> 10 11 <section class="downloads"> 12 <div class="description row"> 13 <div class="col-md-12"> 14 <p> 15 Below are the available downloads for the latest version of Nomad 16 (<%= latest_version %>). Please download the proper package for your 17 operating system and architecture. 18 </p> 19 <p> 20 You can find the 21 <a href="https://releases.hashicorp.com/nomad/<%= latest_version %>/nomad_<%= latest_version %>_SHA256SUMS"> 22 SHA256 checksums for Nomad <%= latest_version %> 23 </a> 24 online and you can 25 <a href="https://releases.hashicorp.com/nomad/<%= latest_version %>/nomad_<%= latest_version %>_SHA256SUMS.sig"> 26 verify the checksums signature file 27 </a> 28 which has been signed using <a href="https://www.hashicorp.com/security.html" target="_TOP">HashiCorp's GPG key</a>. 29 You can also <a href="https://releases.hashicorp.com/nomad/" target="_TOP">download older versions of Nomad</a> from the releases service. 30 </p> 31 </div> 32 </div> 33 34 <% product_versions.each do |os, arches| %> 35 <% next if os == "web" %> 36 <div class="row"> 37 <div class="col-md-12 download"> 38 <div class="icon pull-left"><%= system_icon(os) %></div> 39 <div class="details"> 40 <h2 class="os-name"><%= pretty_os(os) %></h2> 41 <ul> 42 <% arches.each do |arch, url| %> 43 <li><a href="<%= url %>"><%= pretty_arch(arch) %></a></li> 44 <% end %> 45 </ul> 46 <div class="clearfix"></div> 47 </div> 48 </div> 49 </div> 50 <% end %> 51 52 <div class="row"> 53 <div class="col-md-12 poweredby"> 54 <a href="https://www.fastly.com?utm_source=hashicorp" target="_TOP"> 55 <%= image_tag "fastly_logo.png" %> 56 </a> 57 </div> 58 </div> 59 </section>