mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 17:56:16 +00:00
98 lines
4.2 KiB
HTML
98 lines
4.2 KiB
HTML
---
|
||
lang: en
|
||
menufor:
|
||
- text: Individuals
|
||
url: bitcoin-for-individuals
|
||
- text: Businesses
|
||
url: bitcoin-for-businesses
|
||
- text: Developers
|
||
url: bitcoin-for-developers
|
||
- text: Enthusiasts
|
||
url: bitcoin-for-enthusiasts
|
||
- text: Press
|
||
url: bitcoin-for-press
|
||
menu:
|
||
- text: How it works
|
||
url: how-it-works
|
||
- text: Vocabulary
|
||
url: vocabulary
|
||
- text: Resources
|
||
url: resources
|
||
- text: Community
|
||
url: community
|
||
- text: Development
|
||
url: development
|
||
- text: Foundation
|
||
url: foundation
|
||
- text: About
|
||
url: about
|
||
---
|
||
<!DOCTYPE HTML>
|
||
<html lang="{{ page.lang }}">
|
||
<head>
|
||
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
||
<meta property="og:image" content="http://bitcoin.org/img/opengraph.png" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
|
||
<title>{{ page.title }}</title>
|
||
{% lesscss main.less %}
|
||
<script type="text/javascript" src="/js/main.js"></script>
|
||
<link rel="shortcut icon" href="/favicon.png">
|
||
<link rel="apple-touch-icon-precomposed" href="/img/logo_ios.png"/>
|
||
</head>
|
||
<body>
|
||
{% if site.ALERT or site.ALERT_en %}
|
||
{% if site.ALERT_CLASS %}{% assign class = site.ALERT_CLASS%}{% endif %}{% if site.ALERT_CLASS_en %}{% assign class = site.ALERT_CLASS_en%}{% endif %}
|
||
{% if site.ALERT %}{% assign alert = site.ALERT%}{% endif %}{% if site.ALERT_en %}{% assign alert = site.ALERT_en%}{% endif %}
|
||
<div class="alert-message {{ class }}">
|
||
<div><div>{{ alert }}</div></div>
|
||
</div>
|
||
{% endif %}
|
||
<div id="head"><div>
|
||
<select id="langselect" onchange="window.location=this.value;">
|
||
{% for lang in site.langs %}{% assign la = lang[0]%}{% if lang[0] == page.lang %}{% assign active = ' selected="selected"'%}{% else %}{% assign active = ''%}{% endif %}
|
||
<option value="/{{ lang[0] }}/{{ site.section[page.id][la] }}"{{ active }}>{{ lang[1] }}</option>
|
||
{% endfor %}
|
||
</select>
|
||
<ul id="lang">
|
||
<li><a href="#" onclick="return false;">{{ site.langs[page.lang] }}</a>
|
||
<ul>
|
||
{% for lang in site.langs %}{% if lang[0] != page.lang %}{% assign la = lang[0]%}
|
||
<li><a href="/{{ lang[0] }}/{{ site.section[page.id][la] }}">{{ lang[1] }}</a></li>
|
||
{% endif %}{% endfor %}
|
||
</ul>
|
||
</li>
|
||
</ul>
|
||
<a id="logo" href="/{{ page.lang }}/"><img src="/img/logotop.svg" alt="Bitcoin"></a>
|
||
<a href="#" id="menumobile" onclick="mobileshow(event);"></a>
|
||
<ul id="menufor">
|
||
{% for link in page.menufor %}{% assign active = nil %}{% capture fullurl %}{{ '/' | append:page.lang | append:'/' | append:link.url | append:'.html' }}{% endcapture %}{% if page.url == fullurl %}{% assign active = 'active' %}{% endif %}
|
||
<li{% if active %} class="{{ active }}"{% endif %}><a href="/{{ page.lang }}/{{ link.url }}">{{ link.text }}</a></li>
|
||
{% endfor %}
|
||
</ul>
|
||
<ul id="menu">
|
||
{% for link in page.menu %}{% assign active = nil %}{% capture fullurl %}{{ '/' | append:page.lang | append:'/' | append:link.url | append:'.html' }}{% endcapture %}{% if page.url == fullurl %}{% assign active = 'active' %}{% endif %}
|
||
<li{% if active %} class="{{ active }}"{% endif %}><a href="/{{ page.lang }}/{{ link.url }}">{{ link.text }}</a></li>
|
||
{% endfor %}
|
||
</ul>
|
||
</div></div>
|
||
<div id="body">
|
||
<div id="content"{% if page.mode == "wide" %} class="wide"{% endif %}>
|
||
{{ content }}
|
||
</div>
|
||
<div id="rightbox"{% if page.mode == "wide" %} class="wide"{% endif %}>
|
||
<div id="choose">
|
||
<a href="/en/choose-your-wallet"><img src="/img/but_start.svg" alt="Choose your wallet">Choose your wallet</a>
|
||
</div>
|
||
<div id="before">
|
||
<a href="/en/you-need-to-know"><img src="/img/but_warn.svg" alt="You need to know">You need to know</a>
|
||
</div>
|
||
<div id="support">
|
||
<a href="/en/support-bitcoin"><img src="/img/but_involve.svg" alt="Support Bitcoin">Support Bitcoin</a>
|
||
</div>
|
||
</div>
|
||
<div id="footer"><a href="http://bitcoin2013.com" class="conferencebanner"><img src="/img/bitcoin2013_banner.png" alt="Bitcoin conference"></a><div>© Bitcoin Project 2009–2013 Released under the <a href="http://creativecommons.org/licenses/MIT/" target="_blank">MIT license</a></div></div>
|
||
</div>
|
||
<script type="text/javascript">svgfallback();</script>
|
||
</body>
|
||
|
||
</html>
|