66 lines
2.0 KiB
HTML
66 lines
2.0 KiB
HTML
---
|
|
# This file is licensed under the MIT License (MIT) available on
|
|
# http://opensource.org/licenses/MIT.
|
|
|
|
layout: base
|
|
end_of_page: |
|
|
<script>updateToc();</script>
|
|
<script>boxShow();</script>
|
|
<script>onScrollButton();</script>
|
|
## Note: global variables like page.lang must be set in _config.yml for collections
|
|
---
|
|
{% if page.canonical != nil %}
|
|
<script>window.location.href='{{ page.canonical }}';</script>
|
|
<link rel="canonical" href="https://bitcoin.org{{ page.canonical }}"/>
|
|
{% endif %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="/en/rss/alerts.rss" title="Bitcoin network status and alerts">
|
|
|
|
<div class="subhead-links">
|
|
<div class="container">
|
|
<a href="/en/alerts">Network alerts history</a>
|
|
|
|
|
<a type="application/rss+xml" href="/en/rss/alerts.rss">
|
|
<img src="/img/icons/header_rss.svg?{{site.time | date: '%s'}}" alt="rss" class="rssicon"> Subscribe to RSS feed</a>
|
|
|
|
|
<a href="https://github.com/bitcoin-dot-org/bitcoin.org/commits/master/{{page.path|uri_escape}}">Post history</a>
|
|
|
|
|
<a href="https://github.com/bitcoin-dot-org/bitcoin.org/issues/new?body=Source%20File%3A%20{{page.path|uri_escape}}%0A%0A">Report issue</a>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
<div class="hero">
|
|
<div class="container hero-container">
|
|
<h1 class="post-title alerttitle">{{ page.title }}</h1>
|
|
<p class="summary">{{ page.date | date:"%e %B %Y" }}</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="toc-container">
|
|
<div class="row toc-row">
|
|
{% if page.show_toc %}
|
|
<div id="toc" class="toc">
|
|
<div>
|
|
<button class="mob-sidebar-open" hidden>ALL TOPICS</button>
|
|
<div class="sidebar">
|
|
<div class="sidebar-inner" markdown="1">
|
|
<button class="mob-sidebar-close" hidden></button>
|
|
{% include helpers/toc.html html=content %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="toccontent">
|
|
<article class="article">
|
|
{{ content }}
|
|
</article>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|