forked from bitcoin-dot-org/Bitcoin.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathalerts.html
More file actions
83 lines (78 loc) · 3.01 KB
/
Copy pathalerts.html
File metadata and controls
83 lines (78 loc) · 3.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base
lang: en
id: alerts
title: Network status and alerts - Bitcoin
---
{% assign date_sorted_alerts = site.alerts | sort: 'date' %}
<link rel="alternate" type="application/rss+xml" href="/en/rss/alerts.rss" title="Bitcoin network status and alerts">
<div class="hero">
<div class="container hero-container">
<h1>Network status and alerts</h1>
<p class="summary">Stay aware of network alerts by
<a type="application/rss+xml" href="/en/rss/alerts.rss">subscribing to the RSS feed</a>
</p>
{% include helpers/hero-social.html %}
</div>
</div>
<div class="alerts">
<div class="container">
{% if site.STATUS == 0 %}
<div class="alertstatusinactive alert">There is no ongoing event on the Bitcoin network.</div>
{% else %}
<div class="alertstatusactive section-title">The following network event is ongoing.</div>
<ul class="post-list clearfix alertsactive">
{% for p in date_sorted_alerts reversed %}{% if p.active == true %}
<li class="post">
<div class="post-inner">
<p class="post-date">{{ p.date | date:"%Y-%m-%d" }} -</p>
<p class="post-name">{{ p.title }}</p>
<p class="post-description">
<!-- Post description -->
</p>
<a class="button btn-bright" href="{{ p.url | replace:'.html','' }}">{% translate informbut getting-started %}</a>
</div>
</li>
{% endif %}{% endfor %}
</ul>
<div class="btn-container">
<button class="button btn-dark" id="loadMore">{% translate loadmore events%}</button>
</div>
{% endif %}
<ul class="post-list clearfix alertsinactive">
{% for p in date_sorted_alerts reversed %}{% if p.active == false %}
<li class="post">
<div class="post-inner">
<p class="post-date">{{ p.date | date:"%Y-%m-%d" }} -</p>
<p class="post-name">{{ p.title }}</p>
<p class="post-description">
<!-- Post description -->
</p>
<a class="button btn-bright" href="{{ p.url | replace:'.html','' }}">{% translate informbut getting-started %}</a>
</div>
</li>
{% endif %}{% endfor %}
</ul>
<div class="btn-container">
<button class="button btn-dark" id="loadMore">{% translate loadmore-alerts %}</button>
</div>
<div class="additional-links">
<p>
<a href="https://bitnodes.earn.com/">Status and distribution of Bitcoin nodes</a>
</p>
<p>
<a href="http://bitcoinstats.com/network/propagation/">Propagation time on the network</a>
</p>
<p>
<a href="https://en.bitcoin.it/wiki/Common_Vulnerabilities_and_Exposures">Complete CVE list</a>
</p>
<p>Please refer to the
<a href="/en/development">development</a> page if you want to report a vulnerability.
</p>
</div>
</div>
</div>
<script src="/js/jquery/jquery-1.11.2.min.js"></script>
<script src="/js/loadMorePosts.js"></script>