dash-docs/_templates/download.html
Saivann a75b2f1391 New layout for the "Choose your wallet" page
Greatly simplify layout
Increase visibility for "you need to know" and "secure your wallet" pages
Providing increased transparency about security and zero-trust model for each wallet
Encourage diversity and decentralization by
  not recommending two single wallets anymore
  rotating wallets daily by "zero-trust levels" (full nodes followed by SPV wallets followed by hybrid & multisig wallets followed by web wallets)
Display screenshots
Increase visibility for Bitcoin Core by
  recommending it in other wallets' disclaimers as a full node and deterministic build app
  making it always the first desktop wallet displayed
  better promoting it as a good secure / zero-trust wallet
Prepare layout for hardware wallets
Prevent confusing duplicate listing
Allow layout to scale with increasing number of wallets
Fix layout issues with translations and hyphenation
Simplify the process of adding new wallets by storing information in a single location using a consistent format

Thanks @harding for reviews and feedback on the first draft
2014-07-16 22:55:33 -04:00

63 lines
3.5 KiB
HTML
Executable file

---
layout: base
id: download
---
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin Core releases">
<div class="download">
<h1>{% translate pagetitle %}</h1>
<h2>{% translate latestversion %} {{site.DOWNLOAD_VERSION}}<a type="application/rss+xml" href="/en/rss/releases.rss"><img src="/img/icon_rss.svg" alt="rss" class="rssicon"></a></h2>
<div class="mainbutton"><a id="downloadbutton" href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe"><img src="/img/but_windows.svg" alt="icon">{% translate download %}</a></div>
<div class="downloadbox">
<p>{% translate downloados %}</p>
<div>
<div><img src="/img/os/med_win.png" alt="windows"> <a href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe">Windows (32bit)</a> <small>~11MB</small></div>
<div><img src="/img/os/med_win.png" alt="windows"> <a href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win64-setup.exe">Windows (64bit)</a> <small>~12MB</small></div>
<div><img src="/img/os/med_win.png" alt="windows"> <a href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win.zip">Windows (zip)</a> <small>~61MB</small></div>
</div>
<div>
<div><img src="/img/os/med_osx.png" alt="osx"> <a href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-osx.dmg">Mac OS X</a> <small>~13MB</small></div>
<div><img src="/img/os/med_linux.png" alt="linux"> <a href="/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-linux.tar.gz">Linux (tgz)</a> <small>~36MB</small></div>
<div><img src="/img/os/med_ubuntu.svg" alt="ubuntu"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">Ubuntu (PPA)</a> <small>~5MB</small></div>
</div>
<p>
<a href="/bin/{{site.DOWNLOAD_VERSION}}/SHA256SUMS.asc">{% translate downloadsig %}</a><br>
<a href="https://github.com/bitcoin/bitcoin">{% translate sourcecode %}</a><br>
<a href="/en/version-history">{% translate versionhistory %}</a>
</p>
</div>
<h2><img src="/img/note.svg" class="warningicon" alt="note">{% translate patient %}</h2>
<p>{% translate notesync %}</p>
<p>{% translate notelicense %}</p>
</div>
<script type="text/javascript">
var os='windows32';
if(navigator.userAgent.indexOf('Mac')!=-1)var os='mac'
else if(navigator.userAgent.indexOf('Linux')!=-1){
var os='linux';
if(navigator.userAgent.indexOf('Ubuntu')!=-1)var os='ubuntu';
}
else if(navigator.userAgent.indexOf('WOW64')!=-1||navigator.userAgent.indexOf('Win64')!=-1)var os='windows64';
var but=document.getElementById('downloadbutton');
switch(os){
case 'windows64':
but.getElementsByTagName('IMG')[0].src='/img/but_windows.svg';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win64-setup.exe';
break;
case 'windows32':
but.getElementsByTagName('IMG')[0].src='/img/but_windows.svg';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe';
break;
case 'linux':
but.getElementsByTagName('IMG')[0].src='/img/but_linux.png';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-linux.tar.gz';
break;
case 'ubuntu':
but.getElementsByTagName('IMG')[0].src='/img/but_ubuntu.svg';
but.href='https://launchpad.net/~bitcoin/+archive/bitcoin';
break;
case 'mac':
but.getElementsByTagName('IMG')[0].src='/img/but_mac.svg';
but.href='/bin/{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-osx.dmg';
break;
}
</script>