forked from bitcoin-dot-org/Bitcoin.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
version-history.html
47 lines (44 loc) · 1.51 KB
/
version-history.html
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
---
# This file is licensed under the MIT License (MIT) available on
# http://opensource.org/licenses/MIT.
layout: base-core
lang: en
id: version-history
title: Version History - Bitcoin Core
breadcrumbs:
- bitcoin
- bcc
- News
---
{% assign date_sorted_releases = site.releases | sort: 'optional_date', 'last' %}
<link rel="alternate" type="application/rss xml" href="/en/rss/releases.rss" title="Bitcoin Core releases">
<div class="hero">
<div class="container hero-container">
<h1>Bitcoin Core version history</h1>
<p class="summary"><a type="application/rss xml" href="/en/rss/releases.rss">{% translate rsslink events%}</a></p>
{% include helpers/hero-social.html %}
</div>
</div>
<div class="version">
<div class="container">
<ul class="post-list clearfix">
{% for p in date_sorted_releases reversed %}
<li class="post">
<div class="post-inner">
<p class="post-date">{% if p.optional_date %}{{ p.optional_date | date:"%Y-%m-%d" }}{% endif %}</p>
<p class="post-name">{{ p.title }}</p>
<p class="post-description">
<!-- Version description -->
</p>
<a class="button btn-bright" href="{{ p.url | replace:'.html','' }}">Read more</a>
</div>
</li>
{% endfor %}
</ul>
<div class="btn-container">
<button class="button btn-dark" id="loadMore">Load more versions</button>
</div>
</div>
</div>
<script src="/js/jquery/jquery-1.11.2.min.js"></script>
<script src="/js/loadMorePosts.js"></script>