github.com/kardianos/nomad@v0.1.3-0.20151022182107-b13df73ee850/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 all available downloads for the latest version of Nomad
    16  			(<%= latest_version %>). Please download the proper package for your
    17  			operating system and architecture. You can find SHA256 checksums
    18  			for packages <a href="https://dl.bintray.com/mitchellh/nomad/nomad_<%= latest_version %>_SHA256SUMS?direct">here</a>. You can verify the SHA256 checksums using <a href="https://hashicorp.com/security.html">our PGP public key</a> and the <a href="https://dl.bintray.com/mitchellh/nomad/nomad_<%= latest_version %>_SHA256SUMS.sig?direct">SHA256SUMs signature file</a>.
    19  			</p>
    20  		</div>
    21  	</div>
    22  	<% product_versions.each do |os, versions| %>
    23  		<div class="row">
    24  		<div class="col-md-12 download">
    25  			<div class="icon pull-left"><%= system_icon(os) %>
    26  		</div>
    27  			<div class="details">
    28  				<h2 class="os-name"><%= os %></h2>
    29  				<ul>
    30  					<% versions.each do |url| %>
    31  						<li><a href="<%= url %>"><%= arch_for_filename(url) %></a></li>
    32  					<% end %>
    33  				</ul>
    34  				<div class="clearfix">
    35  				</div>
    36  			</div>
    37  		</div>
    38  	</div>
    39  <% end %>
    40  
    41  	<div class="row">
    42  		<div class="col-md-12 poweredby">
    43  			<a href='http://www.bintray.com'>
    44  				<img src='https://www.bintray.com/docs/images/poweredByBintray_ColorTransparent.png'>
    45  			</a>
    46  		</div>
    47  	</div>
    48  </section>