Bitcoin.org/en/version-history.html

46 lines
1.4 KiB
HTML

---
# 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>
</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/loadMorePosts.js"></script>