mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 01:36:13 +00:00
Remove right buttons and merge them in the menu Switch to a centered design Apply a consistent summary text for each page Remove link to the Foundation in the main menu Add a "Join Foundation" text in Participate Add a link to the Foundation in the bottom page menu Add a "Getting started" page with links to external merchants and exchanges directories. Rewrite home page with weusecoins video and introductive links Add useful contextual links on "Individuals", "Businesses" and "Developers" page Re-design "Community" and "Resources" pages Add links to the wiki, bitcoinmining.com, coindesk, thegenesisblock, letstalkbitcoin, usebitcoins.info and howtobuybitcoins.info Re-design "Download" page with OS autodetect button Improve "Secure your wallet" texts with a mention about exchanges
57 lines
4.7 KiB
HTML
Executable file
57 lines
4.7 KiB
HTML
Executable file
---
|
|
layout: base
|
|
id: download
|
|
---
|
|
{% case page.lang %}
|
|
{% when 'ar' or 'de' or 'es' or 'fa' or 'fr' or 'it' or 'nl' or 'pl' or 'ru' or 'tr' %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin-Qt releases">
|
|
<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>
|
|
<p class="downloadold">
|
|
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32.zip/download">{% translate downloadwinzip %}</a> <small>~13MB</small><br>
|
|
<img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download">{% translate downloadwinexe %}</a> <small>~9MB</small><br>
|
|
<img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">{% translate downloadubu %}</a><br>
|
|
<img src="/img/dow-linux.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-linux.tar.gz/download">{% translate downloadlin %}</a> <small>~12MB</small><br>
|
|
<img src="/img/dow-osx-uni.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-macosx.dmg/download">{% translate downloadmac %}</a> <small>~13MB</small><br>
|
|
<span></span> <a href="https://github.com/bitcoin/bitcoin">{% translate downloadsource %}</a> (GitHub)<br><br>
|
|
<span></span> <a href="/en/version-history" style="font-weight:bold;">{% translate versionhistory %}</a>
|
|
</p>
|
|
<br>
|
|
<p>{% translate notelicense %}</p>
|
|
<p>{% translate notesync %}</p>
|
|
|
|
{% else %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/releases.rss" title="Bitcoin-Qt 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="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download"><img src="/img/but_windows.svg" alt="icon">{% translate download %}</a></div>
|
|
<div class="downloadbox">
|
|
<p>{% translate downloados %}</p>
|
|
<div><img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32.zip/download">{% translate downloadwinzip %}</a> <small>~13MB</small></div>
|
|
<div id="download_windows"><img src="/img/dow-win.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download">{% translate downloadwinexe %}</a> <small>~9MB</small></div>
|
|
<div><img src="/img/dow-ubuntu.png"> <a href="https://launchpad.net/~bitcoin/+archive/bitcoin">{% translate downloadubu %}</a> <small>~4MB</small></div>
|
|
<div><img src="/img/dow-linux.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-linux.tar.gz/download">{% translate downloadlin %}</a> <small>~12MB</small></div>
|
|
<div><img src="/img/dow-osx-uni.png"> <a href="http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-macosx.dmg/download">{% translate downloadmac %}</a> <small>~13MB</small></div>
|
|
<div><span></span> <a href="https://github.com/bitcoin/bitcoin">{% translate downloadsource %}</a> (GitHub)</div>
|
|
<p><a href="/en/version-history">{% translate versionhistory %}</a></p>
|
|
</div>
|
|
<p>{% translate notesync %}</p>
|
|
<p>{% translate notelicense %}</p>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var os='windows';
|
|
if(navigator.userAgent.indexOf('Mac')!=-1)var os='mac'
|
|
if(navigator.userAgent.indexOf('Linux')!=-1)var os='ubuntu';
|
|
var but=document.getElementById('downloadbutton');
|
|
but.getElementsByTagName('IMG')[0].src='/img/but_'+os+'.svg';
|
|
switch(os){
|
|
case 'windows':but.href='http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-win32-setup.exe/download';break;
|
|
case 'ubuntu':but.href='https://launchpad.net/~bitcoin/+archive/bitcoin';break;
|
|
case 'mac':but.href='http://sourceforge.net/projects/bitcoin/files/Bitcoin/bitcoin-{{site.DOWNLOAD_VERSION}}/bitcoin-{{site.DOWNLOAD_VERSION}}-macosx.dmg/download';break;
|
|
}
|
|
</script>
|
|
|
|
{% endcase %}
|