Skip to content

Commit 0e08489

Browse files
committed
Add Bitcoin Knots as a node software
1 parent 82ef78a commit 0e08489

File tree

13 files changed

+349
-0
lines changed

13 files changed

+349
-0
lines changed
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
{% endcomment %}
5+
6+
<div class="callout">
7+
<a class="callout-btn btn-bright" href="https://bitcoinknots.org/files/29.x/29.1.knots20250903/">Download Bitcoin Knots</a>
8+
<div class="row callout-row">
9+
<span class="btn-subtext">Bitcoin Knots 29.1</span>
10+
<div>
11+
<img class="callout-img" src="/img/os/windows.png?{{site.time | date: '%s'}}" alt="Windows">
12+
<img class="callout-img" src="/img/os/mac.png?{{site.time | date: '%s'}}" alt="Mac">
13+
<img class="callout-img" src="/img/os/linux.png?{{site.time | date: '%s'}}" alt="Linux">
14+
</div>
15+
</div>
16+
<hr class="separator btn-separator">
17+
</div>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
{% endcomment %}
5+
6+
<div id="content" class="content">
7+
{{ content }}
8+
</div>
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
{% endcomment %}
5+
6+
<div class="footer-bottom">
7+
<div class="container">
8+
<div class="row footer-bottom-row">
9+
<div class="footerlicense">© Bitcoin Project 2009-{{ site.time | date: '%Y' }} {% translate footer layout %}
10+
<br> Bitcoin Knots pages on Bitcoin.org are
11+
<a href="/en/bitcoin-core/about-site">maintained separately</a> from the rest of the site.
12+
</div>
13+
<div class="row footer-status-block">
14+
<a href="/en/alerts" class="statusmenu{% if site.STATUS == 1 %} alert{% endif %}">{% translate network-status layout %}</a>
15+
{% include layout/base/head-language-dropdown.html %}
16+
<div id="footer-langselect" class="footer-langselect langselect">
17+
<label for="select-input-footer" class="center-select">
18+
<select class="center-select__input" onchange="window.location=this.value; ">
19+
{% for lang in site.langsorder %}{% assign active = ''%}{% if lang == page.lang %}{% assign active = ' selected="selected"'%}{%
20+
endif %}
21+
<option value="/{{ lang }}/{% translate {{page.id}} url {{lang}} %}" {{ active }}>{{ site.langs[lang] }}</option>
22+
{% endfor %}
23+
</select>
24+
<span class="center-select__text">{{ page.lang }}</span>
25+
</label>
26+
</div>
27+
</div>
28+
</div>
29+
</div>
30+
</div>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
{% endcomment %}
5+
6+
<a class="logo" href="/en/bitcoin-knots/"><img src="/img/bitcoin-knots/knots-logo-short-black-orange-1024.svg?{{site.time | date: '%s'}}" alt="Bitcoin"></a>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
{% endcomment %}
5+
6+
<ul id="menusimple" class="menusimple menucore" onclick="mobileMenuHover(event);" ontouchstart="mobileMenuHover(event);">
7+
<li{% if page.id == 'bitcoin-knots-help' %} class="active"{% endif %}><a href="/en/bitcoin-knots/help">Get Help</a></li>
8+
<li{% if page.id == 'download' %} class="active"{% endif %}><a href="https://bitcoinknots.org/files/29.x/29.1.knots20250903/">Download</a></li>
9+
</ul>
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
5+
<!-- this must come before the main style sheet so that our
6+
definitions override the defaults -->
7+
{% endcomment %}
8+
9+
<link rel="stylesheet" href="/css/jquery-ui.min.css">
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{% comment %}
2+
This file is licensed under the MIT License (MIT) available on
3+
http://opensource.org/licenses/MIT.
4+
{% endcomment %}
5+
6+
{% if page.moved_url %}
7+
<div class="banner-message minor">
8+
<a href="{{page.moved_url}}"><span>{% translate banner-core-moved layout %}</span></a>
9+
</div>
10+
{% endif %}

_includes/layout/base/head-menu.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
{% else %}
5454
<li{% if page.id == 'download' %} class="active"{% endif %}><a href="/{{page.lang}}/{% translate download url %}">{% translate bitcoin-core layout %}</a></li>
5555
{% endif %}
56+
<li><a href="/en/bitcoin-knots/">Bitcoin Knots</a></li>
5657
</ul>
5758
</li>
5859
<li{% if page.id == 'innovation' %} class="active"{% endif %}><a href="/{{ page.lang }}/{% translate innovation url %}">{% translate menu-innovation layout %}</a></li>

_includes/references.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -269,6 +269,9 @@ http://opensource.org/licenses/MIT.
269269
[bcc validation do you validate]: /en/bitcoin-core/features/validation#do-you-validate
270270
[bcc validation protection]: /en/bitcoin-core/features/validation#how-validation-protects-your-bitcoins
271271
[bcc version history]: /en/version-history
272+
[bck contribute]: https://github.com/bitcoinknots/bitcoin/blob/29.x-knots/CONTRIBUTING.md
273+
[bck contribute issues]: https://github.com/bitcoinknots/bitcoin/issues
274+
[bck help]: /en/bitcoin-knots/help
272275

273276
[Bitcoin Core 0.6.0]: /en/release/v0.6.0
274277
[Bitcoin Core 0.6.1]: /en/release/v0.6.1
@@ -464,6 +467,7 @@ http://opensource.org/licenses/MIT.
464467
[native irc client]: https://en.wikipedia.org/wiki/List_of_IRC_clients
465468
[netcat]: https://en.wikipedia.org/wiki/Netcat
466469
[nop opcodes]: https://en.bitcoin.it/wiki/Script#Reserved_words
470+
[#OCEAN]: https://webchat.freenode.net/?channels=OCEAN&uio=d4
467471
[offline transactions]: http://bitcoin.stackexchange.com/a/34122/21052
468472
[open a pull request]: https://github.com/bitcoin-dot-org/bitcoin.org#working-with-github
469473
[open an issue]: https://github.com/bitcoin-dot-org/bitcoin.org/issues/new

_layouts/base-knots.html

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
# This file is licensed under the MIT License (MIT) available on
3+
# http://opensource.org/licenses/MIT.
4+
---
5+
<!DOCTYPE HTML>
6+
<html lang="{{ page.lang }}">
7+
8+
{% comment %}
9+
<!-- on non-translated pages (e.g. Download page), use conditionals to
10+
use the base template -->
11+
{% endcomment %}
12+
13+
<head>
14+
{% include layout/base-knots/html-head-jquery-css.html %}
15+
{% include layout/base/html-head.html %}
16+
</head>
17+
18+
<body>
19+
{% include layout/base/pagetop-donation.html %}
20+
{% include layout/base/pagetop-detect-mobile.html %}
21+
{% include layout/base/pagetop-alert.html %}
22+
{% include layout/base-knots/pagetop-moved-notice.html %}
23+
24+
<div class="head"><div>
25+
{% include layout/base/head-mobile-menu.html %}
26+
{% if page.lang == 'en' %}
27+
{% include layout/base-knots/head-logo.html %}
28+
{% include layout/base-knots/head-menu.html %}
29+
{% else %}
30+
{% include layout/base/head-logo.html %}
31+
{% include layout/base/head-menu.html %}
32+
{% endif %}
33+
{% include layout/base/head-language-dropdown.html %}
34+
{% include layout/base/head-language-select.html %}
35+
</div></div>
36+
37+
<div class="body">
38+
{% include layout/base-knots/content.html %}
39+
<div class="footer">
40+
<div class="container">
41+
{% include layout/base/footer-logo.html %}
42+
{% include layout/base/footer-menu.html %}
43+
</div>
44+
{% include layout/base-knots/footer-license.html %}
45+
</div>
46+
</div>
47+
48+
{% include layout/base/footer-js.html %}
49+
</body>
50+
51+
</html>

0 commit comments

Comments
 (0)